import { AuthSession, IAuthPersistence } from './authTypes'; export declare class AuthPersistence implements IAuthPersistence { private projectId; private storageKey; constructor(projectId: string); getSession(): Promise; saveSession(session: AuthSession): Promise; clearSession(): Promise; getSavedToken(): string | null; getSavedUser(): AuthSession['user'] | null; }