import { User } from '../../app-auth'; import { Player } from '../players'; export declare class PlayerPersonalData { id: number; playerId: number; birthDate: string | null; cpfEncrypted: string | null; cpfHash: string | null; collectedAt: Date | null; migratedAt: Date | null; migratedToUserId: string | null; deletedAt: Date | null; createdAt: Date; updatedAt: Date; player: Player; migratedToUser: User | null; prepareData(): void; } //# sourceMappingURL=player-personal-data.entity.d.ts.map