import type { OAuthLoginCallbacks } from "./oauth/types.js"; /** * 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 const loginKagi: (options: import("./oauth/index.js").OAuthController) => Promise; export declare const kagiProvider: { readonly id: "kagi"; readonly name: "Kagi"; readonly envKeys: "KAGI_API_KEY"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };