import type { CustomSelectionStyle, StateManager } from '../state';
import type { CellRange } from '../../ts-types';
export declare function deletaCustomSelectRanges(state: StateManager): void;
export declare function addCustomSelectRanges(customSelectRanges: {
    range: CellRange;
    style: CustomSelectionStyle;
}[], state: StateManager): void;
