import type { Column } from "./Column"; export type TableCellProps = { column: Column; row: any; rowIndex: number; columnIndex: number; }; export default function TableCell({ column, row, rowIndex, columnIndex, }: TableCellProps): any; //# sourceMappingURL=TableCell.d.ts.map