import type * as Extend from "../index"; /** * Extracts structured data from parsed content using an extractor. * * The extractor reference must include an explicit `version`. Valid values are `"latest"`, `"draft"`, or a specific semver string (e.g. `"1.0"`). * * See the [Extract step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#extract-step). */ export interface ExtractStepDefinition { name: string; /** Optional on create/update. Required before the workflow can be deployed. Omitted in responses when the step is not yet configured. */ config?: Extend.ExtractStepDefinitionConfig; /** Can only be set when `config` is present. */ next?: Extend.SimpleNextEntry[]; }