import { InitMfaEnrollmentWithTotpResponse, CheckMfaEnrollmentResponse } from "@opensea/wallet-messages"; import { MfaMethod } from "./base"; export declare const initMfaChallenge: (mfaMethod: MfaMethod) => Promise; export declare const submitMfaChallenge: (mfaMethod: MfaMethod, mfaCode: string) => Promise; export declare const cancelMfaChallenge: () => Promise; export declare const initMfaEnrollmentWithSms: (phoneNumber: string) => Promise; export declare const submitMfaEnrollmentWithSms: (phoneNumber: string, mfaCode: string) => Promise; export declare const unenrollWithSms: () => Promise; export declare const initMfaEnrollmentWithTotp: () => Promise; export declare const submitMfaEnrollmentWithTotp: (mfaCode: string) => Promise; export declare const unenrollWithTotp: () => Promise; export declare const checkMfaEnrollment: () => Promise; //# sourceMappingURL=methods.d.ts.map