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