/// import { ColumnType } from "./Table"; type Props = { item: Record | string; column: ColumnType; rowHeight: number; }; declare function TableRowCell({ item, column, rowHeight }: Props): JSX.Element; export default TableRowCell;