import type { BuildConfig, AttributeSet } from "../../types/build-type.js"; import type { FlowStepRef, FlowLevelRef } from "./types.js"; /** * Walk every flow step and build a FlowStepRef. We no longer decode mock JS * (generate/validate/requirements) because phase 3 now drafts only * descriptions. */ export declare function collectStepRefs(config: BuildConfig): FlowStepRef[]; /** * One FlowLevelRef per flow entry in x-flows. Carries just enough context for * the LLM to draft a 1-2 sentence flow description. */ export declare function collectFlowRefs(config: BuildConfig): FlowLevelRef[]; export declare function getActionAttributeSubtree(attributes: AttributeSet[], ucId: string, action: string): unknown; //# sourceMappingURL=context.d.ts.map