import React from 'react'; import { CSS } from '../theme/stitches.config'; import { TableCollection } from '@react-types/table'; import { TableVariantsProps } from './table.styles'; import { TableState } from '@react-stately/table'; interface Props { state: TableState; collection: TableCollection; animated?: boolean; hideLoading?: boolean; hasPagination?: boolean; color?: TableVariantsProps['color']; as?: keyof JSX.IntrinsicElements; } declare type NativeAttrs = Omit, keyof Props>; export declare type TableBodyProps = Props & NativeAttrs & { css?: CSS; }; declare const TableBody: React.FC>; export default TableBody;