import React from 'react'; import type { BoxElement } from '../Box'; import { type FlexProps } from '../Flex'; import type { PolymorphicRef } from '../types/polymorphic'; export type StackProps = Omit, 'direction'> & { direction?: 'vertical' | 'horizontal'; }; type StackComponent = ((props: Readonly> & { ref?: PolymorphicRef; }) => React.ReactElement | null) & { displayName?: string; }; declare const Stack: StackComponent; export default Stack; //# sourceMappingURL=index.d.ts.map