import { DMN_LATEST__tInformationItem } from "@kie-tools/dmn-marshaller"; import * as React from "react"; import { BeeTableCellProps, BoxedExpression, Normalized, VariableChangedArgs } from "../api"; import "./ExpressionVariableCell.css"; export interface ExpressionWithVariable { expression: Normalized | undefined; variable: Normalized; } export type OnExpressionWithVariableUpdated = (index: number, { expression, variable }: ExpressionWithVariable, variableChangedArgs: VariableChangedArgs) => void; export declare const ExpressionVariableCell: React.FunctionComponent & { onExpressionWithVariableUpdated: OnExpressionWithVariableUpdated; }>; //# sourceMappingURL=ExpressionVariableCell.d.ts.map