import type * as Extend from "../index"; /** * Runs extractors based on formula conditions. * * Each extractor reference must include an explicit `version`. Valid values are `"latest"`, `"draft"`, or a specific semver string (e.g. `"1.0"`). * * See the [Conditional Extract step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#conditional-extract-step). */ export interface ConditionalExtractStepDefinition { 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.ConditionalExtractStepDefinitionConfig; /** Can only be set when `config` is present. */ next?: Extend.SimpleNextEntry[]; }