import type { StrategyInterface, StrategyOption, Authentication } from "./types.js"; export type Types = { StrategyOptions: StrategyOption; AuthOptions: never; Authentication: Authentication; }; export declare const createCallbackAuth: StrategyInterface;