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. * @param {Function} highlightParams.cellMoveEnabled Function to determine if the move zone should be shown * on the single-cell (focus) selection border. * @returns {Selection} */ export declare function createHighlight({ cellCornerVisible, cellMoveEnabled, ...restOptions }: Record): VisualSelection;