export interface AuthResult { success: boolean; user?: { id: string; email: string; }; error?: string; } export declare function authenticate(): Promise; export declare function logout(): Promise; export declare function getAuthStatus(): Promise<{ authenticated: boolean; user?: { id: string; email: string; }; }>; //# sourceMappingURL=cli-auth.d.ts.map