/// export declare type Props = { onChange: (src: string | null) => void; imagePreview: string | null; }; /** * Input for image uploads - opens the image gallery */ export declare const ImagePreview: ({ onChange, imagePreview }: Props) => JSX.Element;