import React from 'react'; import { TableRowProps } from './TableRow'; export interface TableBodyProps extends React.HTMLProps { /** Child of `Table.Body` which should be one or more `Table.Row`. */ children: React.ReactElement | React.ReactElement[]; } export declare const TableBody: React.FC; export default TableBody; //# sourceMappingURL=TableBody.d.ts.map