/// import type { AuthToken } from "../../records/Auth"; import type { InitialScreen, LoginType, Origin } from "../../records/MagicLogin"; declare type OwnProps = { type: LoginType; initialScreen?: InitialScreen; initialEmail?: string; origin?: Origin; fixedAccount?: { email: string; type?: "password"; } | null; disableSocialLogin?: boolean; onClose: () => void; onGetSimpleToken?: (authToken: AuthToken) => void; onSignInFulfill?: () => void; isSimplifiedLoginFlow: boolean; onContinueAsGuest?: () => void; }; declare const MagicLogin: (props: OwnProps) => JSX.Element; export default MagicLogin;