import React from 'react'; import { ColumnDefinition } from '../Context/TableContext'; interface TableBodyCellProps { row: TData; rowIndex: number; columnDefinition: ColumnDefinition; } export declare function TableBodyCell(props: TableBodyCellProps): React.JSX.Element; export {};