import React from "react"; import "./image-cropper.scss"; interface ImageCropperText { select?: string; cancel?: string; crop?: string; } export declare type ImageCropperProps = Omit & { /** The image value as string */ value?: string; /** On change handler fired when image has been cropped or reset */ onChange?: (image: string) => void; /** The size of the image cropper picker */ size?: number; /** Texts used in the image cropper */ text?: ImageCropperText; }; export interface ClipRect { top: number; right: number; bottom: number; left: number; } export declare const ImageCropper: React.FC; export {};