import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; export declare const DEFAULT_LOCAL_TOKEN = "lm-studio-local"; export declare function loginLmStudio(options: OAuthController): Promise; export declare const lmStudioProvider: { readonly id: "lm-studio"; readonly name: "LM Studio (Local OpenAI-compatible)"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };