import type { CellAddress, CellRange, HighlightScope } from '../../ts-types';
export declare function checkColInlineInSelect(col: number, cellRanges: CellRange[]): boolean;
export declare function checkRowInlineInSelect(row: number, cellRanges: CellRange[]): boolean;
export declare function checkCellInSelect(col: number, row: number, cellRanges: CellRange[]): boolean;
export declare function checkMultiCellInSelect(cellPosStart: CellAddress, cellPosEnd: CellAddress, selectRangs: CellRange[], selectMode: HighlightScope): boolean;
export declare function checkRowInSelect(row: number, cellRanges: CellRange[]): boolean;
export declare function checkColInSelect(col: number, cellRanges: CellRange[]): boolean;
