import { BaseModel } from './util'; import { WrestballStatisticTypes, GameTimeTypes, OvertimeTypes, TimerTypes } from './tournament'; export declare class WrestballGameConfig extends BaseModel { periodsCount: number; periodTime: number; gameUpToScore: number; overtimeType: OvertimeTypes; overtimeTime: number; overtimeScore: number; maxGamePlayers: number; timeoutCount: number; overtimeTimeoutCount: number; timeoutTime: number; statisticType: WrestballStatisticTypes; shotClockEnabled: boolean; gameTimeType: GameTimeTypes; timerType: TimerTypes; wrestlerScrumsCount: number; wrestlersCount: number; wrestlerUserIds: number[]; static toFront(data: any): any; static toBack(data: any): any; }