import { BaseModel } from './util'; import { File } from './file'; export declare class LeaguePlaylist extends BaseModel { id: number; name: string; files: File[]; keyCode: string; static toFront(data: any): any; static toBack(data: any): any; }