import { Hotspot, HotspotAction } from "../types"; export declare const useHotspotOperations: (hotspots: Hotspot[], setHotspots: React.Dispatch>) => { handleHotspotDelete: (id: string) => void; handleHotspotDrag: (id: string, newX: number, newY: number) => void; handleRectangleResize: (id: string, newWidth: number, newHeight: number) => void; handleActionUpdate: (id: string, action: HotspotAction | undefined) => void; handleCreatePoint: (x: number, y: number) => void; };