import { DMN_LATEST__tConditional, DMN_LATEST__tContext, DMN_LATEST__tDecisionTable, DMN_LATEST__tFilter, DMN_LATEST__tFor, DMN_LATEST__tFunctionDefinition, DMN_LATEST__tInformationItem, DMN_LATEST__tInvocation, DMN_LATEST__tList, DMN_LATEST__tLiteralExpression, DMN_LATEST__tQuantified, DMN_LATEST__tRelation } from "@kie-tools/dmn-marshaller"; export type BoxedLiteral = { __$$element: "literalExpression"; } & DMN_LATEST__tLiteralExpression; export type BoxedRelation = { __$$element: "relation"; } & DMN_LATEST__tRelation; export type BoxedContext = { __$$element: "context"; } & DMN_LATEST__tContext; export type BoxedDecisionTable = { __$$element: "decisionTable"; } & DMN_LATEST__tDecisionTable; export type BoxedList = { __$$element: "list"; } & DMN_LATEST__tList; export type BoxedInvocation = { __$$element: "invocation"; } & DMN_LATEST__tInvocation; export type BoxedFunction = { __$$element: "functionDefinition"; } & DMN_LATEST__tFunctionDefinition; export type BoxedFor = { __$$element: "for"; } & DMN_LATEST__tFor; export type BoxedEvery = { __$$element: "every"; } & DMN_LATEST__tQuantified; export type BoxedSome = { __$$element: "some"; } & DMN_LATEST__tQuantified; export type BoxedConditional = { __$$element: "conditional"; } & DMN_LATEST__tConditional; export type BoxedFilter = { __$$element: "filter"; } & DMN_LATEST__tFilter; export declare enum BoxedFunctionKind { Feel = "FEEL", Java = "Java", Pmml = "PMML" } export type Normalized = WithRequiredDeep; type WithRequiredDeep = T extends undefined ? T : T extends Array ? Array> : { [P in keyof T]: WithRequiredDeep; } & (K extends keyof T ? { [P in K]-?: NonNullable>; } : T); export type BoxedIterator = BoxedFor | BoxedEvery | BoxedSome; export type BoxedExpression = BoxedLiteral | BoxedRelation | BoxedContext | BoxedDecisionTable | BoxedList | BoxedInvocation | BoxedFunction | BoxedFor | BoxedEvery | BoxedSome | BoxedConditional | BoxedFilter; export interface PmmlDocument { document: string; modelsFromDocument?: { model: string; parametersFromModel?: DMN_LATEST__tInformationItem[]; }[]; } export declare const getNextAvailablePrefixedName: (names: string[], namePrefix: string, lastIndex?: number) => string; export {}; //# sourceMappingURL=BoxedExpression.d.ts.map