import { TSLexicalScope } from "./ts-lexical-scope.js"; import { TSMemberScope } from "./ts-member-scope.js"; import type { TSModuleScope } from "./ts-module-scope.js"; import type { TSPackageScope } from "./ts-package-scope.js"; export type TSOutputScope = TSPackageScope | TSModuleScope | TSLexicalScope; export declare function useTSScope(): TSOutputScope; export declare function useTSLexicalScope(): TSLexicalScope; export declare function useTSLexicalScopeIfPresent(): TSLexicalScope | undefined; export declare function useTSMemberScope(): TSMemberScope; //# sourceMappingURL=scopes.d.ts.map