export declare class TwoFactorCodeDto {
    id: string;
    type: string;
    operationName: string;
    code: string;
    used: boolean;
    outdated: boolean;
    externalTenantId: string;
    createdAt: Date;
    updatedAt: Date;
}
