import { Cell } from '@tanstack/react-table'; import { HTMLAttributes } from 'react'; type Props = { cell: Cell; } & HTMLAttributes; export declare function TableBodyCell({ cell }: Props): import("react/jsx-runtime").JSX.Element; export {};