import { Region } from '../../types'; /** * Hook for cropping region image from the original image * @param imageUrl - URL of the original image * @returns Function to crop region image and return base64 string */ export declare const useCropRegionImage: (imageUrl: string | undefined) => (region: Region) => Promise;