import { ComponentPropsWithoutRef } from 'react'; /** * Props for the TableBody component * @extends ComponentPropsWithoutRef<"tbody"> * @extends ComponentPropsWithoutRef<"div"> */ export type TableBodyProps = ({ /** * The type of table being rendered */ type: "simple"; } & ComponentPropsWithoutRef<"tbody">) | ({ /** * The type of table being rendered */ type: "data-table"; } & ComponentPropsWithoutRef<"div">); /** * Table body component for simple presentational or complex data tables * @param props - The props for the TableBody component * @param props.type - The type of table being rendered * @param props.children - The children of the TableBody component * @param props.ref - The ref of the TableBody component */ export declare function TableBody({ type, children, ...rest }: TableBodyProps): import("react/jsx-runtime").JSX.Element;