import { BaseModel } from './util'; import { GameTimeTypes, OvertimeTypes, TimerTypes } from './tournament'; export declare class HockeyGameConfig extends BaseModel { periodsCount: number; periodTime: number; overtimeType: OvertimeTypes; overtimeTime: number; maxGamePlayers: number; timeoutCount: number; overtimeTimeoutCount: number; timeoutTime: number; gameTimeType: GameTimeTypes; substituteManageEnabled: boolean; minorPenaltyTime: number; majorPenaltyTime: number; misconductPenaltyTime: number; gameMisconductPenaltyTime: number; matchPenaltyTime: number; playoffSeriesOvertimeType: OvertimeTypes; playoffSeriesOvertimeTime: number; timerType: TimerTypes; static toFront(data: any): any; static toBack(data: any): any; get overtimePeriod(): number; get bullitsPeriod(): number; get playoffBullitsPeriod(): number; get playoffOvertimePeriod(): number; }