import React from 'react'; export interface TableBodyProps { /** Child element(s) */ children?: React.ReactNode | React.ReactNode[]; height: number; loading?: boolean; } /** Contains the tbody elements */ declare const TableBody: ({ children, height, loading, ...other }: TableBodyProps) => JSX.Element; export default TableBody;