import { type TableFieldConfig } from "./Table.types"; export interface TableBodyRowDataCellProps { item: Item; fieldConfig: TableFieldConfig; emptyFieldContentText?: string; } export declare function TableBodyRowDataCell(props: TableBodyRowDataCellProps): import("react").JSX.Element;