///
import { Hotspot, Image, ImageHotspotValue } from "../types";
export declare const useHotspotState: (initialValue: ImageHotspotValue | null | undefined, name: string, onChange: (event: {
target: {
name: string;
value: ImageHotspotValue | null;
type?: string;
};
}) => void) => {
hotspots: Hotspot[];
setHotspots: import("react").Dispatch>;
imageData: Image | null;
setImageData: (asset: Image) => void;
imageId: string | null;
handleImageRemove: () => void;
};