import { ScopePropsWithInfo, ScopePropsWithValue } from "@alloy-js/core"; //#region src/typescript/contexts/lexical-scope.d.ts interface LexicalScopePropsWithScopeValue extends ScopePropsWithValue {} interface LexicalScopePropsWithScopeInfo extends ScopePropsWithInfo {} type LexicalScopeProps = LexicalScopePropsWithScopeValue | LexicalScopePropsWithScopeInfo; /** * A lexical scope for TypeScript, which contains declaration spaces for types and values. Declaration components will create symbols in this scope. */ declare function LexicalScope(props: LexicalScopeProps): import("@alloy-js/core").Children; //#endregion export { LexicalScopePropsWithScopeValue as i, LexicalScopeProps as n, LexicalScopePropsWithScopeInfo as r, LexicalScope as t }; //# sourceMappingURL=lexical-scope-DghPwq5Q.d.mts.map