import type { Children } from "@alloy-js/core"; import type { TSOutputSymbol } from "../symbols/ts-output-symbol.js"; export interface MemberScopeProps { children: Children; /** * The symbol that this member scope will create member symbols on. */ ownerSymbol: TSOutputSymbol; } /** * A member scope for TypeScript. Member declarations will create symbols * in this scope, which will be added to the owner symbol's members. */ export declare function MemberScope(props: MemberScopeProps): Children; //# sourceMappingURL=MemberScope.d.ts.map