export interface MfaVoiceChallengeContinueOptions { /** * The verification code received via voice call. */ code: string; /** * Optional flag to remember the device for 30 days, skipping future MFA challenges. */ rememberDevice?: boolean; /** * Additional custom options to pass with the request. */ [key: string]: string | number | boolean | undefined;}