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