import { GeometryCoordinates, GeometryClickInfo, DrawingMode } from '../_types/geometryDrawingTypes'; interface OnDblClickParams { info: GeometryClickInfo; geometryCoordinates: GeometryCoordinates; mode: DrawingMode; isClosed: boolean; setGeometryCoordinates: (coords: GeometryCoordinates) => void; } /** * Handles double-click on the transparent edge-pick-layer. * * Finds the edge closest to the clicked coordinate (segment-distance search) * and splices a new vertex in at that position. No ghost markers needed – * the user double-clicks directly on the visible edge line. * * Only active for polygon mode (other modes ignored). */ export declare const onGeometryDblClick: ({ info, geometryCoordinates, mode, isClosed, setGeometryCoordinates, }: OnDblClickParams) => void; export {};