import type { OAuthAuth } from "../types.ts"; type OAuthFlowLoaders = { anthropic: () => OAuthAuth | Promise; openaiCodex: () => OAuthAuth | Promise; githubCopilot: () => OAuthAuth | Promise; openrouter: () => OAuthAuth | Promise; kimiCoding: () => OAuthAuth | Promise; xai: () => OAuthAuth | Promise; radius: (options: { name: string; gateway: string; }) => OAuthAuth | Promise; }; /** Registers statically bundled OAuth flows for standalone Bun binaries. */ export declare function registerBundledOAuthFlowLoaders(loaders: OAuthFlowLoaders): void; export declare const loadAnthropicOAuth: () => Promise; export declare const loadOpenAICodexOAuth: () => Promise; export declare const loadGitHubCopilotOAuth: () => Promise; export declare const loadOpenRouterOAuth: () => Promise; export declare const loadKimiCodingOAuth: () => Promise; export declare const loadXaiOAuth: () => Promise; export declare const loadRadiusOAuth: (options: { name: string; gateway: string; }) => Promise; export {}; //# sourceMappingURL=load.d.ts.map