import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; /** * 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 function loginLiteLLM(options: OAuthController): Promise; export declare const litellmProvider: { readonly id: "litellm"; readonly name: "LiteLLM"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };