import * as React from "react"; import { IteratorClause } from "./IteratorExpressionComponent"; import { BeeTableRef } from "../../table/BeeTable"; export interface IteratorExpressionVariableCellProps { rowIndex: number; columnIndex: number; currentElementId: string; data: readonly IteratorClause[]; beeTableRef: React.RefObject; } export declare function IteratorExpressionVariableCell({ rowIndex, columnIndex, currentElementId, data, beeTableRef, }: IteratorExpressionVariableCellProps): JSX.Element; //# sourceMappingURL=IteratorExpressionVariableCell.d.ts.map