import React from 'react'; import type { ColumnShape, RowData } from './types'; export interface TableCellProps { className?: string; cellData?: any; column?: ColumnShape; columnIndex?: number; rowData?: RowData; rowIndex?: number; } /** * Cell component for BaseTable */ declare const TableCell: React.FC; export default TableCell;