import type { Store } from '../state'; import type { GridRangeSelection, GridRowId } from '../types'; export declare function isRangeEqual(range1: GridRangeSelection | null, range2: GridRangeSelection | null): boolean; export type GridRangeIds = { rowIds: Set; columnIds: Set; firstColumnId: string | null; firstRowId: GridRowId | null; lastColumnId: string | null; lastRowId: GridRowId | null; }; export declare function getIdsFromRange(range: GridRangeSelection, rowIds: GridRowId[], columnIds: string[]): GridRangeIds; export declare const healSpannedRange: (range: GridRangeSelection, grid: Store) => GridRangeSelection; //# sourceMappingURL=range.d.ts.map