export declare class GenreModel { id: number; order: string; label: string; constructor(id?: number, order?: string, label?: string); fromJSON(json: any): this; }