/** * Selection type that is visible only if the row or column header is clicked. If that happened * all row or column header layers are highlighted. * * @type {string} */ export declare const ACTIVE_HEADER_TYPE = "active-header"; /** * Selection type that is visible only if the a cell or cells are clicked. If that happened * only the most closest to the cells row or column header is highlighted. * * @type {string} */ export declare const HEADER_TYPE = "header"; /** * Selection type that is visible when a cell or cells are clicked. The selected cells are * highlighted. * * @type {string} */ export declare const AREA_TYPE = "area"; /** * Selection type defines a cell that follows the user (keyboard navigation). * * @type {string} */ export declare const FOCUS_TYPE = "focus"; /** * Selection type defines borders for the autofill functionality. * * @type {string} */ export declare const FILL_TYPE = "fill"; /** * Selection type defines highlights for the `currentRowClassName` option. * * @type {string} */ export declare const ROW_TYPE = "row"; /** * Selection type defines highlights for the `currentColumnClassName` option. * * @type {string} */ export declare const COLUMN_TYPE = "column"; /** * Selection type defines highlights managed by the CustomBorders plugin. * * @type {string} */ export declare const CUSTOM_SELECTION_TYPE = "custom-selection";