import React from "react"; import { SelectionContextValue } from "../contexts/selection-context"; interface Props extends SelectionContextValue { selectRow?: SelectionContextValue; } declare const withSelectionContext: (Component: React.ComponentType) => () => React.JSX.Element; export default withSelectionContext;