import React, { TdHTMLAttributes } from 'react'; import { CellSize, ColumnAlign } from '../table/types'; export interface TableCellProps extends TdHTMLAttributes { id?: string; fixed?: boolean; fixedColumnWidth?: number; empty?: boolean; disabled?: boolean; align?: ColumnAlign; resizable?: boolean; colSpan?: number; lastRow?: boolean; hasDisabledStyle?: boolean; clickable?: boolean; selectable?: boolean; lastColumn?: boolean; /** @default 'medium' */ size?: CellSize; /** @default true */ truncate?: boolean; /** @default true */ wrapContent?: boolean; } export declare const TableCell: React.ForwardRefExoticComponent>;