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