import { DragStartInfo, Coordinate, bboxDragInfo } from '../types'; /** * Function to start dragging the bounding box. * * @param {DragStartInfo} info - Information about the drag start event. * @param {Function} updateBboxDragInfo - Function to update the bounding box drag information. * @param {Function} setOriginalBboxBorderCoordinates - Function to set the original bounding box border coordinates. */ export declare const onStartDragging: (info: DragStartInfo, updateBboxDragInfo: (updatedDragInfo: bboxDragInfo) => void, setOriginalBboxBorderCoordinates: (coords: Coordinate[]) => void) => void;