import React, { TdHTMLAttributes } from 'react'; import { CellSize, ColumnAlign } from '../table/types'; interface TableCellProps extends TdHTMLAttributes { id?: string; fixed?: boolean; fixedColWidth?: number; isEmpty?: boolean; disabled?: boolean; align?: ColumnAlign; resize?: boolean; colSpan?: number; isRowLast?: boolean; cellDisabledStyle?: boolean; clickable?: boolean; selectable?: boolean; isColumnLast?: boolean; /** @default 'medium' */ size?: CellSize; /** @default true */ isTruncate?: boolean; /** @default true */ isHugeContents?: boolean; } export declare const TableCell: React.ForwardRefExoticComponent>; export {};