import { ComponentProps, Polymorphic } from '@hitagi/utils/types'; import * as SS from 'styled-system'; import React from 'react'; type StackDirection = 'row' | 'column'; declare const StackWrapper: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, { direction: StackDirection; gap?: React.CSSProperties['gap']; swapDirectionIfLt?: "container" | undefined; } & SS.AlignItemsProps>> & SS.JustifyContentProps>> & SS.LayoutProps>> & SS.SpaceProps>, string | number | symbol> & SS.FlexGrowProps>> & SS.FlexBasisProps>, import("csstype").Property.FlexBasis> & SS.FlexShrinkProps>> & { position?: React.CSSProperties['position']; }, never>; type StackProps = { divider?: React.ReactElement; } & ComponentProps; export declare const Stack: Polymorphic.ForwardRefComponent<'div', StackProps>; export declare const HStack: Polymorphic.ForwardRefComponent<'div', Omit>; export declare const VStack: Polymorphic.ForwardRefComponent<'div', Omit>; export {};