type SmitheryCliAuthSession = { sessionId: string; authUrl: string; }; type SmitheryCliPollResponse = { status: "pending" | "success" | "error"; apiKey?: string; message?: string; }; export declare function getSmitheryLoginUrl(): string; export declare function createSmitheryCliAuthSession(): Promise; export declare function pollSmitheryCliAuthSession(sessionId: string, signal?: AbortSignal): Promise; export declare function getSmitheryApiKey(): Promise; export declare function saveSmitheryApiKey(apiKey: string): Promise; export declare function clearSmitheryApiKey(): Promise; export {};