import React from 'react'; import { ImageCrop, ImageHotspot, ObjectSchemaType, Path } from '@sanity/types'; import { FormFieldPresence } from '@sanity/base/presence'; import PatchEvent from '../../../PatchEvent'; interface Value { hotspot?: ImageHotspot; crop?: ImageCrop; } interface ImageToolInputProps { imageUrl: string; value?: Value; compareValue?: Value; onChange: (event: PatchEvent) => void; readOnly: boolean | null; focusPath: Path; presence?: FormFieldPresence[]; onFocus: (nextPath: Path) => void; level: number; type: ObjectSchemaType; } export declare const ImageToolInput: React.ForwardRefExoticComponent>; export {}; //# sourceMappingURL=ImageToolInput.d.ts.map