import { BoxProps } from '../box'; import * as React from 'react'; import * as StyledSystem from 'styled-system'; import { FlexProps } from '../flex'; interface StackPropsBase { isInline?: boolean; children?: React.ReactNode[] | React.ReactNode; spacing?: StyledSystem.MarginProps['margin']; align?: FlexProps['align']; justify?: FlexProps['justify']; shouldWrapChildren?: boolean; } export declare type StackProps = StackPropsBase & BoxProps; export {};