import React from 'react'; export interface ITableCell { hovering?: boolean; children?: any; tableStyle?: 'normal' | 'light'; cellStyle?: 'normal' | 'overflow'; type?: 'string' | 'boolean'; renderCell?: (props: ITableCell) => React.JSX.Element; onClick?: () => void; id?: number | string; } declare const TableCell: React.MemoExoticComponent<(tableCell: Readonly) => React.JSX.Element>; export default TableCell;