import * as React from 'react'; import { TableCellProps } from 'react-table'; declare type PropsType = { children?: React.ReactNode; cellProps: TableCellProps; }; export declare const TableCell: React.MemoExoticComponent<(props: PropsType) => JSX.Element>; export {};