import type { HotInstance } from '../../core/types'; import type { default as CellCoords } from '../../3rdparty/walkontable/src/cell/coords'; /** * Get the cell coordinates from the mouse position. When the mouse is outside of the table, * the nearest cell is returned. * * @param {Handsontable} hotInstance The Handsontable instance. * @param {number} mouseX The x coordinate of the mouse. * @param {number} mouseY The y coordinate of the mouse. * @returns {CellCoords} The cell coordinates. */ export declare function getCellCoordsFromMousePosition(hotInstance: HotInstance, mouseX: number, mouseY: number): CellCoords;