import { AuthInfo } from "..";
import { Account } from "../../core";
export type LoopzAuthContextValue = {
    isLoading: true;
    isAuthenticated: false;
    account: null;
    auth: null;
} | ({
    isLoading: false;
} & ({
    isAuthenticated: false;
    account: null;
    auth: null;
} | {
    isAuthenticated: true;
    account: Account;
    auth: AuthInfo;
}));
//# sourceMappingURL=loopzauthcontextvalue.d.ts.map