/** * Auth API Service * Handles login, logout, and current user retrieval */ export interface LoginRequest { email: string; password: string; } export interface LoginResponse { access_token: string; } export interface MeResponse { user: { uuid: string; email: string; name: string; }; profile: { uuid: string; company_uuid: string; company_name: string; role: string; }; } export declare function loginUser(payload: LoginRequest, apiUrl?: string): Promise; export declare function logoutUser(token: string, apiUrl?: string): Promise; export declare function getCurrentUser(token: string, apiUrl?: string): Promise;