import { default as React } from 'react'; export interface ImageCropperDialogProps { open: boolean; onOpenChange: (open: boolean) => void; /** Source image URL or data URL */ src: string; /** MIME type for the cropped output. Defaults to image/png. */ outputType?: string; /** Suggested filename (passed back via onConfirm). Defaults to "cropped.png". */ outputName?: string; /** Called when the user confirms the crop. */ onConfirm: (blob: Blob, name: string) => void; } export declare const ImageCropperDialog: React.FC;