import { BaseModel } from './util'; import { File } from './file'; import { Tournament } from './tournament'; export declare enum LeagueNewsType { text = 1, video = 2 } export declare class LeagueNews extends BaseModel { id: number; title: string; datetime: Date; previewText: string; detailText: string; picture: File; cover: File; mobilePicture: File; isMain: boolean; tournaments: Tournament[]; type: LeagueNewsType; videoLink: string; tag: string; static toFront(data: any): any; static toBack(data: any): any; }