import { ComponentChildren } from '../../shared/children'; import { GlobalProps } from '../../shared/global'; export interface TableBodyProps extends GlobalProps { /** * The body of the table. May not have any semantic meaning in the Table's `list` variant. */ children: ComponentChildren; }