import { ComponentChildren } from '../../shared/children'; import { GlobalProps } from '../../shared/global'; export interface TableCellProps extends GlobalProps { /** * The content of the table data. */ children?: ComponentChildren; }