import { InputStep } from 'types'; import { DescriptorState } from '../types'; /** * Resolve the ordered list of steps for the current state. `getFlow` * picks the right named flow (e.g., "W-FORM Treaty Claims") for the * current config; this walker filters its declared step list by each * step's `getVisible` predicate for runtime gating (DRE branching, * adaptive skip, etc.). * * Steps with no `getVisible` declared are treated as always visible — * flow-level membership alone is sufficient for steps like `Summary`. */ export declare const getSteps: (state: DescriptorState) => InputStep[];