export declare type Media = { id: number; name?: string | null; mediaUrl?: string | null; provider?: string | null; mimeType?: string | null; type?: string | null; bytesSize?: number | null; width?: number | null; height?: number | null; md5?: string | null; md5OriginalFile?: string | null; sync?: boolean | null; createdAt: string; updatedAt: string; deletedAt?: string | null; };