/// import { CellProps as TableCellBaseProps } from '@react-types/table'; import { CSS } from '../../theme/stitches.config'; export declare type TableCellProps = TableCellBaseProps & { css?: CSS; }; declare const TableCell: (props: TableCellProps) => JSX.Element; export default TableCell;