import { default as React } from 'react'; import { FieldWidgetComponentProps } from './types.js'; /** * ImageField - Image upload widget with preview thumbnails * Supports single and multiple image uploads with drag-and-drop and preview display */ export declare function ImageField({ value, onChange, field, readonly, onUploadingChange, error, ...props }: FieldWidgetComponentProps): React.JSX.Element;