type CropImageArg = { currentZoom: number; image: HTMLImageElement; positionX: number; positionY: number; rotation?: number; }; declare const cropImage: ({ image, positionX, positionY, currentZoom, rotation }: CropImageArg) => Promise; export { cropImage };