import { BaseModel } from './util'; interface LimitationValue { current: number; required: number; } export declare class GameUserLimitationTypes extends BaseModel { minUserGamesCount: LimitationValue; minUserTime: LimitationValue; minGoalkeeperUserGamesCount: LimitationValue; minGoalkeeperUserTime: LimitationValue; manual: boolean; static toFront(data: any): any; static toBack(data: any): any; } export declare class GameUserLimitations extends BaseModel { tournamentTeamUserId: number; limitations: GameUserLimitationTypes; static toFront(data: any): any; static toBack(data: any): any; } export {};