import type * as Extend from "../index"; /** * Optional on create/update. Required before the workflow can be deployed. Omitted in responses when the step is not yet configured. */ export interface ConditionalExtractStepDefinitionConfig { /** * Formula-based extractor rules for this step. Each rule pairs a formula with an extractor reference. The last rule must have `formula: "TRUE"` as a default catch-all. * * See the [Conditional Extract step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#conditional-extract-step). */ rules: Extend.ConditionalExtractStepDefinitionConfigRulesItem[]; }