import { BaseModel } from './util'; import { File } from './file'; export declare class LeaguePartner extends BaseModel { id: number; title: string; picture: File; link: string; sort: number; static toFront(data: any): any; static toBack(data: any): any; }