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