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