import VisualSelection from '../visualSelection'; /** * Creates the new instance of Selection, responsible for highlighting column or row headers when * any cell is selected. * This type of selection can occur multiple times. * * @param {object} highlightParams A configuration object to create a highlight. * @param {string} highlightParams.headerClassName Highlighted headers' class name. * @returns {Selection} */ export declare function createHighlight({ headerClassName, ...restOptions }: Record): VisualSelection;