import { DynamicRuleComponentInputModel } from "./DynamicRuleComponentInputModel"; /** * Represents the definition of a Dynamic Rule, which defines its execution flow. * @export * @class DynamicRuleDefinitionInputModel */ export declare class DynamicRuleDefinitionInputModel { /** * @type {DynamicRuleComponentInputModel[]} * @memberof DynamicRuleDefinitionInputModel */ variables?: DynamicRuleComponentInputModel[] | undefined; /** * @type {DynamicRuleComponentInputModel[]} * @memberof DynamicRuleDefinitionInputModel */ nodes: DynamicRuleComponentInputModel[]; }