import { ComponentPropsWithoutRef } from 'react'; import { Table as TanstackTable } from '@tanstack/react-table'; /** * Props for the DataTableBody component * @extends {ComponentPropsWithoutRef<"div">} */ export type DataTableBodyProps = { /** * The table instance from @tanstack/react-table to render */ table: TanstackTable; /** * Whether the table has sub rows */ hasSubRows: boolean; } & ComponentPropsWithoutRef<"div">; export declare const DataTableBodyContent: ({ table, hasSubRows, }: { table: TanstackTable; hasSubRows: boolean; }) => import("react/jsx-runtime").JSX.Element[]; export declare function DataTableBody(props: DataTableBodyProps): import("react/jsx-runtime").JSX.Element;