import { RunScope } from '@opensip-cli/core'; import type { RunScopeOptions } from '@opensip-cli/core'; /** Construct a fresh RunScope with empty registries unless overridden. */ export declare function makeTestScope(opts?: RunScopeOptions): RunScope; /** Run an async test body inside a scope. */ export declare function withScope(scope: RunScope, fn: () => Promise): Promise; /** Run a synchronous test body inside a scope. */ export declare function withScopeSync(scope: RunScope, fn: () => T): T; //# sourceMappingURL=scope.d.ts.map