///
import { Crop } from 'react-image-crop';
import 'react-image-crop/dist/ReactCrop.css';
export interface ImageCropProps {
image: string;
circularCrop?: boolean;
onCropSubmit: (blob: HTMLImageElement) => Promise;
onCancel: () => void;
fixedCrop: Partial;
}
export default function ImageCrop({ image, circularCrop, onCropSubmit, onCancel, fixedCrop, }: ImageCropProps): JSX.Element;