import type * as Extend from "../index"; export interface ParseStepRun extends Extend.StepRunBase { step: Extend.ParseStepRunStep; /** The result of this parse 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.ParseResult | null; }