import { type PropsWithChildren, type ForwardedRef } from 'react'; import type { Stack as StackElement, StackProperties } from '@watching/clips/elements'; import { ViewProps } from './View.tsx'; export interface StackProps extends PropsWithChildren, 'spacing' | keyof ViewProps>>, Omit { ref?: ForwardedRef; spacing?: StackProperties['spacing'] | boolean; } declare module 'react' { namespace JSX { interface IntrinsicElements { 'ui-stack': StackProps; } } } export declare const Stack: import("react").ForwardRefExoticComponent & import("react").RefAttributes>>; //# sourceMappingURL=Stack.d.ts.map