import { DataGridSelection } from '../../types'; export interface DataGridSelectableContextState { selection?: DataGridSelection; onSelect?(key: K): void; isSelected(key: K | undefined): boolean; isDisabled(key: K | undefined): boolean; selected?: K[] | K; equals(a: K, b: K): boolean; compare(a: K, b: K): -1 | 0 | 1; } export declare const DataGridSelectableProvider: any, useDataGridSelectableContext: any;