import React, { type ReactElement, type ComponentProps } from "react"; import { type VibeComponentProps } from "../../../types"; import { type TableRowProps } from "../TableRow/TableRow"; import type VirtualizedList from "../../VirtualizedList/VirtualizedList"; export interface TableBodyProps extends VibeComponentProps { /** * The child components inside the table body, such as `` elements. */ children?: ReactElement | ReactElement[] | ReactElement>; } declare const TableBody: React.ForwardRefExoticComponent>; export default TableBody;