import type { HotInstance } from '../../core/types'; /** * Gets all cell metas from the provided range. * * @param {Core} hot The Handsontable instance. * @param {number} fromRow The starting row index. * @param {number} toRow The ending row index. * @param {number} fromColumn The starting column index. * @param {number} toColumn The ending column index. * @returns {Array} Returns an array of cell metas. */ export declare function getCellMetas(hot: HotInstance, fromRow: number, toRow: number, fromColumn: number, toColumn: number): unknown[];