export declare class CreateTwoFactorCodeDto {
    type: string;
    operationName: string;
    code: string;
    used: boolean;
    outdated: boolean;
    externalTenantId: string;
}
