import { BaseModel } from './util'; import { GameTimeTypes, OvertimeTypes, RugbyStatisticTypes, TimerTypes } from './tournament'; export declare class RugbyGameConfig extends BaseModel { periodsCount: number; periodTime: number; overtimeType: OvertimeTypes; overtimeTime: number; overtimePeriods: number; maxGamePlayers: number; gameTimeType: GameTimeTypes; substituteCount: number; freeSubstituteEnabled: boolean; statisticType: RugbyStatisticTypes; timerType: TimerTypes; get penaltyPeriod(): number; static toFront(data: any): any; static toBack(data: any): any; }