import { Point } from '../interaction/draggable'; export interface FocalPointInputProps { imageURL: string; imageWidth: number; imageHeight: number; maxHeight: number; focalPoint?: Point | null; disabled?: boolean; onChange?: (point: Point) => void; } export declare function FocalPointInput({ imageURL, imageWidth, imageHeight, maxHeight, focalPoint, disabled, onChange }: FocalPointInputProps): JSX.Element; export declare function FocalPoint(): JSX.Element; //# sourceMappingURL=focalPointInput.d.ts.map