import { OrganizationType } from '@natrave/auth-service-types'; import { ITournamentContact } from '@natrave/tournaments-service-types'; import { Tournament } from '../tournaments'; export declare class TournamentContact implements ITournamentContact { id: number; tournamentId: number; firstName: string; lastName: string; phone: string; organizationName: string | null; organizationType: OrganizationType | null; profilePictureUrl: string | null; instagramAccount: string | null; createdAt: Date; updatedAt: Date; tournament: Tournament; } //# sourceMappingURL=tournament-contact.entity.d.ts.map