export declare const MediaTypeValues: readonly ["IMAGE", "VIDEO"]; export declare type MediaTypes = typeof MediaTypeValues[number]; export declare type MediaObject = { "url": string; "mediaType": MediaTypes; title?: string; };