import { Tournament } from '../../tournaments'; import { Team } from '../teams'; export declare class TeamTrophy { id: number; teamId: number; tournamentId?: number | null; rank: number; title: string; description?: string | null; trophyImageUrl?: string | null; awardedAt: Date; createdAt: Date; updatedAt: Date; deletedAt?: Date | null; team: Team; tournament?: Tournament | null; } //# sourceMappingURL=team-trophy.entity.d.ts.map