import type * as Extend from "../index"; export interface ConditionalExtractStepRun extends Extend.StepRunBase { step: Extend.ConditionalExtractStepRunStep; /** The result of this conditional extract 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.ConditionalExtractResult | null; }