import { FC, HTMLAttributes } from 'react'; export type TableBodyProps = HTMLAttributes; /** The TableBody component represents the `` section of a table, typically used to group rows of dynamic or structured data within a Table layout */ export declare const TableBody: FC;