export interface ImageCropDialogProps { onCancel: () => void; onCropComplete: (file: File) => void; cropImageUrl: string; } export declare function ImageCropDialog(props: ImageCropDialogProps): import("react/jsx-runtime").JSX.Element;