/** * @fileoverview Test helper — construct a RunScope with the graph * subscope attached, then run a callback inside it. * * After Item 1 the adapter + rule registries are per-RunScope. Tests * that touch them must build a scope first; this helper centralises * the boilerplate. */ import type { RunScope } from '@opensip-tools/core'; /** Build a fresh RunScope with `scope.graph` populated. */ export declare function makeGraphTestScope(): RunScope; /** Run `fn` inside a fresh graph-extended scope; returns its result. */ export declare function withGraphScopeSync(fn: () => T): T; //# sourceMappingURL=with-graph-scope.d.ts.map