import { UIMutableComponentProps } from '../generic'; export interface TableCellContentProps extends UIMutableComponentProps {} export interface StrictTableCellContentProps { type?: 'content' | 'meta' | 'title'; /** Truncate the cell Content with Ellipsis */ truncate?: boolean; }