import type * as Extend from "../index"; export interface RuleValidationStepRun extends Extend.StepRunBase { step: Extend.RuleValidationStepRunStep; /** The result of this rule validation step. Currently, `result` is always present for returned step runs. It is nullable to allow for future support of returning step runs with non-successful statuses. */ result: Extend.RuleValidationResult | null; }