export interface LoginResult { success: boolean; teamId?: string; teamName?: string; error?: string; } export declare function login(apiKey: string, apiUrl?: string): Promise; export declare function logout(teamId?: string): void; export declare function getAuthStatus(): { authenticated: boolean; teamId?: string; teamName?: string; apiUrl: string; teamCount: number; };