/** * Simple authentication manager that delegates to Supabase client * No complex bridge patterns - just direct Supabase authentication */ export declare class AuthManager { private supabaseClient; constructor(); /** * Check if user is authenticated with Supabase */ isAuthenticated(): Promise; /** * Authenticate with Supabase */ authenticate(): Promise; /** * Logout from Supabase */ logout(): Promise; /** * Get current user info (from Supabase) */ getCurrentUser(): Promise; /** * Make authenticated request - delegates to Supabase client */ makeAuthenticatedRequest(endpoint: string, options?: any): Promise; }