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