import { HTMLHeroUIProps } from '@heroui/system'; import { TableBodyProps as TableBodyProps$1 } from '@react-types/table'; import { ReactNode } from 'react'; interface TableBodyProps extends TableBodyProps$1, Omit, keyof TableBodyProps$1> { /** * Provides content to display a loading component when the `loadingState` is `loading` or `loadingMore`. */ loadingContent?: ReactNode; /** * Whether the table data is currently loading. * @default false */ isLoading?: boolean; /** * Provides content to display when there are no rows in the table. * */ emptyContent?: ReactNode; } declare const TableBody: (props: TableBodyProps) => JSX.Element; export { type TableBodyProps, TableBody as default };