import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; /** * Login to Kagi. * * Opens browser to API settings and prompts user to paste their API key. * Returns the API key directly (not OAuthCredentials - this isn't OAuth). */ export declare function loginKagi(options: OAuthController): Promise; export declare const kagiProvider: { readonly id: "kagi"; readonly name: "Kagi"; readonly envKeys: "KAGI_API_KEY"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };