import type { OAuthController } from "./oauth/types"; /** * Login to Ollama. * * Returns a trimmed API key/token string. Empty string means local no-auth mode. */ export declare function loginOllama(options: OAuthController): Promise; export declare const ollamaProvider: { readonly id: "ollama"; readonly name: "Ollama (Local OpenAI-compatible)"; readonly login: typeof loginOllama; };