/// import { BoxProps } from '../Box'; export declare type LocalStackProps = { /** Sets the orientation of the stack component. */ orientation?: 'vertical' | 'horizontal'; /** Sets the spacing between the stack items. */ spacing?: string; /** Indicates the breakpoint at which the stack should become vertical. */ verticalBelow?: string; }; export declare type StackProps = BoxProps & LocalStackProps; export declare const Stack: import("react").ForwardRefExoticComponent & import("react").RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };