import { BaseModel } from './util'; import { File } from './file'; export declare class MediaItem extends BaseModel { id: number; originalPhoto: File; listPhoto: File; detailPhoto: File; gameId: number; tournamentId: number; videoUrl: string; videoPreview: File; isLive: boolean; get isVideo(): boolean; static toFront(data: any): any; static toBack(data: any): any; }