import type * as Extend from "../index"; /** * Parses file content (OCR, text extraction). Every workflow should have exactly one parse step immediately after the trigger. * * See the [Parse step docs](https://docs.extend.ai/2026-02-09/product/workflows/configuring-workflows-via-api#parse-step). */ export interface ParseStepDefinition { name: string; config?: Extend.ParseStepDefinitionConfig; next?: Extend.SimpleNextEntry[]; }