import type { OAuthLoginCallbacks } from "./oauth/types.js"; /** * Login to LiteLLM. * * Opens browser to LiteLLM setup docs, prompts user to paste their API key. * Returns the API key directly (not OAuthCredentials - this isn't OAuth). */ export declare const loginLiteLLM: (options: import("./oauth/index.js").OAuthController) => Promise; export declare const litellmProvider: { readonly id: "litellm"; readonly name: "LiteLLM"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };