import { BboxPoints } from '../types'; /** * Clears active bounding box points and predicted hovered points. * * @param {Function} setActiveBboxPoints - Function to set the active bounding box points. * @param {Function} setPredictedHoveredPoints - Function to set the predicted hovered points. * @param {Function} onBboxCoordinatesChange - Function to notify that bounding box coordinates have changed. */ export declare const clearPoints: (setActiveBboxPoints: (points: BboxPoints | []) => void, setPredictedHoveredPoints: (points: BboxPoints | null) => void, onBboxCoordinatesChange: (points: BboxPoints | null) => void) => void;