import { FC } from 'react'; import { CustomRequestData } from './SUploadFiles'; interface SUploadImageProps { value?: string; onChange?: (value: string | ArrayBuffer) => void; action?: string | ((f: File) => Promise); customRequest?: (option: CustomRequestData) => void; maxSizeM?: number; minWidth?: number; minHeight?: number; } declare const SUploadImage: FC; export default SUploadImage;