/// interface Props { url: string; handleCropedImage: (bob: any) => any; } declare const CropImage: ({ url, handleCropedImage }: Props) => JSX.Element; export default CropImage;