import type { GridRangeSelection } from '../types'; import type { ApiSection } from './types'; export type GridRangeSelectionApi = { select: (range: null | GridRangeSelection) => void; move: (direction: 'left' | 'right' | 'up' | 'down') => void; }; export declare const createRangeSelectionApi: ApiSection; //# sourceMappingURL=range-selection.d.ts.map