import { BaseModel } from './util'; import { File } from './file'; import { User } from './user'; export declare class TournamentNews extends BaseModel { id: number; title: string; picture: File; text: string; author: User; createdAt: Date; static toFront(data: any): any; static toBack(data: any): any; }