import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; /** * Login to Cloudflare AI Gateway. * * Opens browser to Cloudflare AI Gateway authentication docs and prompts for a gateway token/API key. * Returns the API key directly (not OAuthCredentials - this isn't OAuth). */ export declare function loginCloudflareAiGateway(options: OAuthController): Promise; export declare const cloudflareAiGatewayProvider: { readonly id: "cloudflare-ai-gateway"; readonly name: "Cloudflare AI Gateway"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };