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