import "isomorphic-fetch"; export declare type Args = { transactionId: string; passcode: string; }; declare type OtpVerifySuccess = { token: string; }; export declare type OtpVerifyError = "INVALID_VERIFICATION" | "INVALID_PASSCODE" | "TOO_MANY_OTP_VERIFY_ATTEMPTS" | "UNKNOWN"; export declare type OtpVerifyResponse = OtpVerifySuccess | { error: OtpVerifyError; }; declare const otpVerify: ({ transactionId, passcode }: Args) => Promise; export default otpVerify;