/// declare type Image = { id: string; name: string; color: string; data: string; }; export declare type ImagePropertyValueProps = { children: string | Image | undefined | null; alt?: string; }; export declare function ImagePropertyValue({ children, alt }: ImagePropertyValueProps): JSX.Element; export {};