import type { BlockProps, ScopePropsWithInfo, ScopePropsWithValue } from "@alloy-js/core"; export interface BlockScopePropsWithScopeValue extends ScopePropsWithValue, BlockProps { } export interface BlockScopePropsWithScopeInfo extends ScopePropsWithInfo, BlockProps { } export type BlockScopeProps = BlockScopePropsWithScopeValue | BlockScopePropsWithScopeInfo; /** * Create a TypeScript block which includes a scope for any nested declarations. * Can either provide the scope directly via the `value` prop, or else provide * information about the scope. */ export declare function BlockScope(props: BlockScopeProps): import("@alloy-js/core").Children; //# sourceMappingURL=BlockScope.d.ts.map