import { DataBaseModelInterface } from "@solcre-org/core"; export declare class MediaModel implements DataBaseModelInterface { id?: number; title?: string; description?: string; content?: string; addedAt?: string | null; createdBy?: string | null; status?: boolean | null; files?: any[]; constructor(id?: number, title?: string, description?: string, content?: string, addedAt?: string | null, createdBy?: string | null, status?: boolean | null, files?: any[]); fromJSON(json: any): void; toJSON(): any; getId(): number; getReference(): string; }