import { type ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface TableBodyProps extends CommonProps { /** The rows that belong to this table body. */ children: ReactNode; } /** * Renders a body section within a table. * * See [table usage guidelines](https://ui.cimpress.io/components/table/) and [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ declare const _TableBody: (props: TableBodyProps & import("react").RefAttributes) => import("react").JSX.Element | null; export { _TableBody as TableBody }; //# sourceMappingURL=table-body.d.ts.map