export interface Decision { category: string; decisionRequirementsDefinitionId: string; decisionRequirementsDefinitionKey: string; deploymentId: string; historyTimeToLive: number; id: string; key: string; name: string; resource: string; tenantId: string; version: number; versionTag: string; } export interface DecisionXml { id: string; dmnXml: string; } export interface DecisionInputVariable { /** Human-readable column header shown in the decision table. */ label: string; /** The process variable / FEEL expression the input column evaluates. */ expression: string; } export interface DecisionFormValue { name: string; inputVariables: DecisionInputVariable[]; } //# sourceMappingURL=decision.model.d.ts.map