import type { GridRowId } from '../types'; import type { ApiSection } from './types'; export type GridSelectionApi = { selectAll: (ignoreFilter?: boolean) => void; selectNone: (ignoreFilter?: boolean) => void; select: (id: GridRowId, value?: boolean, replaceSelection?: boolean, rangeSelection?: boolean) => void; }; export declare const createSelectionApi: ApiSection; //# sourceMappingURL=selection.d.ts.map