import { KnockoutPhase, MatchLegMode, TournamentFormat, type ITournamentFormatConfig } from '@natrave/tournaments-service-types'; import { Tournament } from '../tournaments'; export declare class TournamentFormatConfig implements ITournamentFormatConfig { id: number; tournamentId: number; format: TournamentFormat; numberOfGroups?: number | null; initialPhaseMatchMode?: MatchLegMode | null; knockoutStartPhase?: KnockoutPhase | null; knockoutMatchMode?: MatchLegMode | null; teamCount: number; createdAt: Date; updatedAt: Date; tournament: Tournament; } //# sourceMappingURL=tournament-format-config.entity.d.ts.map