import type { OAuthController, OAuthLoginCallbacks } from "./oauth/types"; export declare function normalizeDeepSeekApiKey(raw: string): string; export declare const loginDeepSeek: (options: OAuthController) => Promise; export declare const deepseekProvider: { readonly id: "deepseek"; readonly name: "DeepSeek"; readonly login: (cb: OAuthLoginCallbacks) => Promise; };