import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; export declare function loginLlamaCpp(options: OAuthController): Promise; export declare const llamaCppProvider: { readonly id: "llama.cpp"; readonly name: "llama.cpp (Local OpenAI-compatible)"; readonly envKeys: "LLAMA_CPP_API_KEY"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };