import type { AttributeSet, BuildConfig } from "../types/build-type.js"; /** * Walk every example payload in `x-flows` and reconstruct an `x-attributes` * structure that mirrors the payload shape. For each node, descriptions and * enums are pulled from the real `x-attributes` when available; otherwise a * placeholder "edit later" leaf is emitted. * * Output is grouped by use case (flow.usecase) → action (step.api) and * returned as an `AttributeSet[]` compatible with BuildConfig["x-attributes"]. */ export declare function reconstructAttributesFromExamples(config: BuildConfig): AttributeSet[]; //# sourceMappingURL=reconstruct-attributes.d.ts.map