import type { UserProfile } from "@edenapp/types"; import type { SessionManager } from "./SessionManager"; export declare class SessionHandler { private sessionManager; constructor(sessionManager: SessionManager); handleGetCurrent(): { user: UserProfile | null; }; handleLogin(args: { username: string; password: string; }): Promise<{ success: boolean; user?: UserProfile; error?: string; }>; handleLogout(): Promise<{ success: boolean; }>; } //# sourceMappingURL=SessionHandler.d.ts.map