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