import React from "react"; import { VirtualTableSelectionStore, SelectedCell } from "./SelectionStore"; export interface VirtualTableSelectionContextProps { selectionStore: VirtualTableSelectionStore; select: (cell: T | undefined) => void; } export declare const VirtualTableSelectionProvider: ({ store, children }: { store: VirtualTableSelectionStore; children: React.ReactNode; }) => React.JSX.Element; export declare const useVirtualTableSelection: () => VirtualTableSelectionContextProps;