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