import { BaseModel } from './util'; import { GameTimeTypes, OvertimeTypes, TimerTypes, WaterpoloStatisticTypes } from './tournament'; export declare class WaterpoloGameConfig extends BaseModel { periodsCount: number; periodTime: number; overtimeType: OvertimeTypes; overtimeTime: number; maxGamePlayers: number; timeoutCount: number; overtimeTimeoutCount: number; timeoutTime: number; gameTimeType: GameTimeTypes; substituteManageEnabled: boolean; shotClockEnabled: boolean; statisticType: WaterpoloStatisticTypes; timerType: TimerTypes; static toFront(data: any): any; static toBack(data: any): any; get overtimePeriod(): number; get bullitsPeriod(): number; get playoffBullitsPeriod(): number; }