import { TwoFactorCode } from './two-factor-code.entity';
export declare class TwoFactorUser {
    id: string;
    username: string | null;
    secret: string;
    externalTenantId: string;
    externalUserId: string;
    createdAt: Date;
    updatedAt: Date;
    TwoFactorCode?: TwoFactorCode[];
}
