import { type ExpressionRefs } from "../graph.js"; import type { Hcl2JsonTree, TfGraph } from "../types.js"; /** * Test-only stand-in for the hcl2json expression AST (`parse.ts`'s * `resolveExpressionRefs`). Fixture expressions are simple `${}` * templates, so each one's accessor list is just its interpolation bodies. * Production never takes this path — `parseTerraformDir` resolves every * expression through `getReferencesInExpression`. */ export declare function fixtureExprRefs(tree: Hcl2JsonTree): ExpressionRefs; /** `buildGraph` over a hand-written fixture tree, accessors derived per {@link fixtureExprRefs}. */ export declare function buildFixtureGraph(tree: Hcl2JsonTree): TfGraph; //# sourceMappingURL=build-graph.d.ts.map