export interface AuthState {
    readonly isAuthenticated: boolean;
    readonly isLoading: boolean;
    readonly user: {
        readonly hasProfile: boolean;
        readonly profileCompleted: boolean;
    } | null;
}
//# sourceMappingURL=auth-state.d.ts.map