/// import { ImageDropProps } from './ImageDrop'; export interface ImageUploadProps extends ImageDropProps { apiServerUrl?: string; projectId?: string; isDrop?: boolean; } /** * For use with Project Images. After Cropping an Image, it will upload to S3 under that projects ID. */ declare function ImageUpload({ apiServerUrl, projectId, isDrop, ...props }: ImageUploadProps): JSX.Element; export { ImageUpload };