import "@patternfly/react-core/dist/styles/base.css"; import * as React from "react"; import { BeeGwtService, BoxedExpression, DmnDataType, Normalized, PmmlDocument } from "./api"; import { OnExpressionChange } from "./BoxedExpressionEditorContext"; import { FeelIdentifiers } from "@kie-tools/dmn-feel-antlr4-parser"; import "./@types/react-table"; export type OnRequestFeelIdentifiers = () => FeelIdentifiers; export interface BoxedExpressionEditorProps { beeGwtService?: BeeGwtService; expressionHolderId: string; expressionHolderName: string; expressionHolderTypeRef: string | undefined; expression: Normalized | undefined; onExpressionChange: OnExpressionChange; widthsById: Map; onWidthsChange: React.Dispatch>>; isResetSupportedOnRootExpression?: boolean; dataTypes: DmnDataType[]; isReadOnly?: boolean; pmmlDocuments?: PmmlDocument[]; evaluationHitsCountById?: Map; scrollableParentRef: React.RefObject; onRequestFeelIdentifiers?: OnRequestFeelIdentifiers; hideDmn14BoxedExpressions?: boolean; locale?: string; } export declare function BoxedExpressionEditor({ dataTypes, isReadOnly, expressionHolderId, expressionHolderName, expressionHolderTypeRef, expression, onExpressionChange, beeGwtService, isResetSupportedOnRootExpression, scrollableParentRef, pmmlDocuments, onRequestFeelIdentifiers, evaluationHitsCountById, widthsById, onWidthsChange, hideDmn14BoxedExpressions, locale, }: BoxedExpressionEditorProps): JSX.Element; //# sourceMappingURL=BoxedExpressionEditor.d.ts.map