import type { BCMSMediaType } from "@bcms/types/media"; export declare type BCMSPropMediaData = string; export interface BCMSPropMediaDataParsed { _id: string; src: string; name: string; width: number; height: number; caption: string; alt_text: string; svg?: string; type: BCMSMediaType; } export interface BCMSPropValueMediaData { _id: string; alt_text?: string; caption?: string; }