import React from 'react'; import { ConditionalProperty, Marker, ObjectField, Path } from '@sanity/types'; import { FormFieldPresence } from '@sanity/base/presence'; import PatchEvent from '../../../PatchEvent'; interface ImageInputFieldProps { field: ObjectField; onChange: (event: PatchEvent) => void; value: any; parentValue: Record; onBlur: () => void; onFocus: (path: Path) => void; readOnly?: ConditionalProperty; focusPath: Path; compareValue: any; markers: Marker[]; level: number; presence: FormFieldPresence[]; } export declare function ImageInputField(props: ImageInputFieldProps): React.JSX.Element; export {}; //# sourceMappingURL=ImageInputField.d.ts.map