import * as guestAuthService from '../services/guestAuthService'; export interface GuestSession { invitationId: string; loginAttemptNumber: number; scope: string[]; expiresAt: string; } export interface UseGuestSessionResult { token: string | null; session: GuestSession | null; isGuest: boolean; login: (email: string, code: string) => Promise<{ ok: true; } | { ok: false; error: guestAuthService.LoginError; }>; logout: () => Promise; } export declare function useGuestSession(): UseGuestSessionResult; //# sourceMappingURL=useGuestSession.d.ts.map