import { Game } from '../game'; import { CompetitionSport } from '../competition/sport'; import { Place } from '../place'; import { Poule } from '../poule'; import { TogetherGamePlace } from './place/together'; export declare class TogetherGame extends Game { protected startDateTime: Date; constructor(poule: Poule, batchNr: number, startDateTime: Date, competitionSport: CompetitionSport); getTogetherPlaces(): TogetherGamePlace[]; isParticipating(place: Place): boolean; }