import React from 'react'; import { OldTableCellProps } from './converter.old'; export type TableCellProps = OldTableCellProps; export declare const TableCell: React.ForwardRefExoticComponent & { fixedColWidth?: number | undefined; isEmpty?: boolean | undefined; resize?: boolean | undefined; isRowLast?: boolean | undefined; cellDisabledStyle?: boolean | undefined; isColumnLast?: boolean | undefined; isTruncate?: boolean | undefined; isHugeContents?: boolean | undefined; } & React.RefAttributes>;