import { Place } from '../../place'; import { TogetherScore } from '../../score/together'; import { GamePlace } from '../place'; import { TogetherGame } from '../together'; export declare class TogetherGamePlace extends GamePlace { protected gameRoundNumber: number; protected scores: TogetherScore[]; constructor(game: TogetherGame, place: Place, gameRoundNumber: number); getGameRoundNumber(): number; getScores(): TogetherScore[]; }