import { CoreEntity } from '../core/entity'; export interface Media extends CoreEntity { type: MediaType; url: string; } export declare type MediaType = 'image' | 'video' | 'youtube-video-url';