import { EmailCodeResponse, MfaMethod, SessionResult } from './type'; export declare function verifyMfaApi(url: string, { username, mfaCode, mfaMethod, }: { username: string; mfaCode: string; mfaMethod: MfaMethod; }): Promise; export declare function sendEmailVerificationCode(url: string, username: string): Promise;