/** * Overload the Leaflet-Draw Polyline control, to support "delete last vertex" feature. * * Update the "deleteLastVertex" functionality of the Leaflet-Draw Polyline control to * remove the entire polyline when only one vertex is present. By default, the * "deleteLastVertex" is canceled when only one vertex is drawn. * * Because the Polygon control is an extension of the Polyline control, this * "delete last vertex" function will also work when drawing Polygons. */ declare const overloadLeafletDrawPolylineControl: () => void; export { overloadLeafletDrawPolylineControl };