import VisualSelection from '../visualSelection'; /** * Creates the new instance of Selection responsible for highlighting area of the selected multiple cells. * * @param {object} highlightParams A configuration object to create a highlight. * @param {object} highlightParams.areaCornerVisible Function to determine if area's corner should be visible. * @param {object} highlightParams.adjustHandlesVisible Function to determine if adjustment handles should be visible. * @param {object} highlightParams.moveEnabled Function or boolean to determine if the move zone should be shown. * @returns {Selection} */ export declare function createHighlight({ areaCornerVisible, adjustHandlesVisible, moveEnabled, ...restOptions }: Record): VisualSelection;