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