import { ObjectStateEnum } from './ObjectStateEnum';
/** Multi Factor Authentication informations */
export interface MfaInformation {
    /** Indicates if Multi Factor Authentication is activated on this account */
    activated: boolean;
    /** Current status of Multi Factor Authentication feature */
    state: ObjectStateEnum;
    /** Pending task for Multi Factor Authentication */
    taskPendingId: number;
}
//# sourceMappingURL=MfaInformation.d.ts.map