import React from "react"; import { RowExpandContextValue } from "../contexts/row-expand-context"; import { ExpansionHeaderCellProps } from "./expand-header-cell"; interface Props extends ExpansionHeaderCellProps { expandRow?: RowExpandContextValue; } declare const withExpandContext: (Component: React.ComponentType) => () => React.JSX.Element; export default withExpandContext;