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