import type { HotInstance } from '../../types'; import type { default as CellCoords } from '../../../3rdparty/walkontable/src/cell/coords'; /** * Scroll strategy for column header selection. * * @param {Core} hot Handsontable instance. * @returns {function(): function(CellCoords): void} */ export declare function columnHeaderScrollStrategy(hot: HotInstance): (cellCoords: CellCoords) => void;