import { default as React, HTMLAttributes } from 'react'; export interface TableBodyProps extends HTMLAttributes { /** * ID to find this component in testing tools (e.g.: cypress, testing library, and jest). */ testId?: string; } declare const TableBody: React.ForwardRefExoticComponent>; export default TableBody; //# sourceMappingURL=TableBody.d.ts.map