import React from "react"; import type { TableCellProps } from "./TableCell"; import type { DataTableProps } from "./DataTable"; export type TableBodyProps = { className?: string; } & Pick & Pick; declare function TableBody({ className, columns, rows, bodyCellVerticalPadding, isTableScrolledToLeft, isTableScrolledToRight, isLoading, loadingStateScreenReaderText, isEmpty, emptyTableContentHeight, footer, children, isFirstColumnSticky, isLastColumnSticky, emptyCellContent, selectedRowIds, onRowSelectionChange, getRowProps, }: React.PropsWithChildren): React.ReactElement; declare const _default: React.MemoExoticComponent; export default _default;