import VisualSelection from '../visualSelection'; /** * Creates the new instance of Selection responsible for highlighting currently selected cell. This type of selection * can present on the table only one at the time. * * @param {object} highlightParams A configuration object to create a highlight. * @param {Function} highlightParams.cellCornerVisible Function to determine if cell's corner should be visible. * @returns {Selection} */ export declare function createHighlight({ cellCornerVisible, ...restOptions }: Record): VisualSelection;