import type { ReactNode } from 'react'; import type { CommonProps } from '../types.js'; export interface TableBodyCellProps extends CommonProps { /** The contents of the cell. */ children: ReactNode; /** * A unique identifier for the column that this cell belongs to. * Cells that belong to the same column must have the same `columnKey`. */ columnKey: string; } /** * Renders a cell within a table body row. * * See [table usage guidelines](https://ui.cimpress.io/components/table/) and [table building guide](https://ui.cimpress.io/dev-guides/tables/). */ declare const _TableBodyCell: (props: TableBodyCellProps & import("react").RefAttributes) => import("react").JSX.Element | null; export { _TableBodyCell as TableBodyCell }; //# sourceMappingURL=table-body-cell.d.ts.map