import type { OAuthLoginCallbacks } from "./oauth/types.js"; /** * 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 const loginCloudflareAiGateway: (options: import("./oauth/index.js").OAuthController) => Promise; export declare const cloudflareAiGatewayProvider: { readonly id: "cloudflare-ai-gateway"; readonly name: "Cloudflare AI Gateway"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };