import { AbstractModel } from './abstract.model'; import { League } from './league.model'; import { Pitch } from './pitch.model'; import { Game } from 'ftb-cmpts/models/game.model'; export declare class Stadium extends AbstractModel { _id: number; name: string; show: boolean; sortIdx: number; address: string; description: string; lat: string; long: string; photoId: number; photo: string; pitches: Pitch[]; games: Game[]; league: League; constructor(model?: Object); }