import "isomorphic-fetch"; export declare type Args = { email: string; }; declare type OtpLoginSuccess = { transactionId: string; }; declare type OtpLoginError = "INVALID_LOGIN" | "TOO_MANY_OTP_LOGIN_ATTEMPTS" | "UNKNOWN"; export declare type OtpLoginResponse = OtpLoginSuccess | { error: OtpLoginError; }; declare const otpLogin: ({ email }: Args) => Promise; export default otpLogin;