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