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