import { DescriptorConfig, FlowDescriptor } from '../types'; /** * Resolve the flow for a given config. Each meaningful (questionnaire × * config-flag) combination has its own named flow descriptor; this is the * single decision point that picks the right one. * * `treatyClaims` and `realTimeTinValidation` are W-FORM-only — DPS, * SELF-CERT, and RESIDENCIES each map to a single flow. * * Step descriptors no longer need to read these config flags — the flow * either includes the step or it doesn't. */ export declare const getFlow: (config: DescriptorConfig) => FlowDescriptor;