export declare type FlowMetaContentItem = FlowImageContent | FlowVideoContent | FlowAudioContent | FlowModel3dContent | FlowHtmlContent | FlowUnknownContent; export declare type FlowImageContent = { "@type": "IMAGE"; fileName?: string; url: string; representation: FlowMetaContentItemRepresentation; mimeType?: string; size?: number; width?: number; height?: number; }; export declare type FlowVideoContent = { "@type": "VIDEO"; fileName?: string; url: string; representation: FlowMetaContentItemRepresentation; mimeType?: string; size?: number; width?: number; height?: number; }; export declare type FlowAudioContent = { "@type": "AUDIO"; fileName?: string; url: string; representation: FlowMetaContentItemRepresentation; mimeType?: string; size?: number; }; export declare type FlowModel3dContent = { "@type": "MODEL_3D"; fileName?: string; url: string; representation: FlowMetaContentItemRepresentation; mimeType?: string; size?: number; }; export declare type FlowHtmlContent = { "@type": "HTML"; fileName?: string; url: string; representation: FlowMetaContentItemRepresentation; mimeType?: string; size?: number; }; export declare type FlowUnknownContent = { "@type": "UNKNOWN"; fileName?: string; url: string; representation: FlowMetaContentItemRepresentation; mimeType?: string; size?: number; }; export declare enum FlowMetaContentItemRepresentation { PREVIEW = "PREVIEW", BIG = "BIG", ORIGINAL = "ORIGINAL" }