import { type Cell } from '@tanstack/react-table'; interface TableBodyCellProps { cell: Cell; colSpan?: number; className?: string; disablePinnedShadow?: boolean; } export declare const TableBodyCell: { ({ cell, colSpan, className, disablePinnedShadow, }: TableBodyCellProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export {};