export declare class FlatMediaModel { id: number; label: string; idParent: number; highlight: boolean; disabled: boolean; constructor(id?: number, label?: string, idParent?: number, highlight?: boolean, disabled?: boolean); fromJSON(json: any): this; }