import { z } from 'zod'; import { BaseCommand } from '../base-command'; declare const flagsSchema: z.ZodObject<{ email: z.ZodString; }, "strip", z.ZodTypeAny, { email: string; }, { email: string; }>; export declare class DisableMFACommand extends BaseCommand> { run(): Promise; catch(error: Error): Promise; private reportSuccess; private reportUserDoesNotExistError; } export {};