import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { BlockStack as BlockStackElement, BlockStackProperties } from '@watching/clips/elements'; import type { StackProps } from './Stack.tsx'; export interface BlockStackProps extends PropsWithChildren, keyof StackProps>>, Omit { ref?: ForwardedRef; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-block-stack': BlockStackProps; } } } export declare const BlockStack: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; //# sourceMappingURL=BlockStack.d.ts.map