import { ExternalProvider, IdentitySignInResponseType, LoginMethod, UserMfaVerificationType } from "../api/api.schemas"; export type AccountLoginPageState = IdentitySignInResponseType | 'Login'; export type AccountLoginState = { isBusy?: boolean; type: AccountLoginPageState; mfaType?: UserMfaVerificationType; loginMethod: LoginMethod; externalProviders: ExternalProvider[]; }; export declare const defaultAccountLoginState: () => AccountLoginState;