import { Identifiable } from '../identifiable'; import { AgainstGamePlace } from './place/against'; import { TogetherGamePlace } from './place/together'; export declare class GameParticipation extends Identifiable { protected gamePlace: TogetherGamePlace | AgainstGamePlace; protected gameRoundNumber: number; constructor(gamePlace: TogetherGamePlace | AgainstGamePlace, gameRoundNumber: number); getGamePlace(): TogetherGamePlace | AgainstGamePlace; }