import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; export declare function loginVllm(options: OAuthController): Promise; export declare const vllmProvider: { readonly id: "vllm"; readonly name: "vLLM (Local OpenAI-compatible)"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };