/** * Represents a single step in the execution plan of a dynamic rule. * @export * @class DynamicRuleValidationPlanStepModel */ export declare class DynamicRuleValidationPlanStepModel { /** * @type {string} * @memberof DynamicRuleValidationPlanStepModel */ step?: string | undefined; /** * @type {number} * @memberof DynamicRuleValidationPlanStepModel */ order?: number | undefined; /** * @type {string[]} * @memberof DynamicRuleValidationPlanStepModel */ nodes?: string[] | undefined; }