import { BaseModel } from './util'; import { File } from './file'; export declare enum BannerLocation { slider = "slider", central = "central", media = "media" } export declare class LeagueBanner extends BaseModel { id: number; title: string; picture: File; link: string; sort: number; location: BannerLocation; static toFront(data: any): any; static toBack(data: any): any; }