/// <reference types="react" />
import type { Cell, Table } from "@tanstack/react-table";
import type { CommandClick } from "../../grid-component/type";
interface TableBodyCellProps<T> {
    table: Table<T>;
    tableId: string;
    cell: Cell<T, unknown>;
    commandClick?: (args: CommandClick<T>) => void;
    [key: string]: any;
}
declare const TableBodyCell: <RecordType extends object>(props: TableBodyCellProps<RecordType>) => JSX.Element;
export default TableBodyCell;
