/// import { SizeProps, SpaceProps } from '../../styles'; import { CSSValueWithLength } from '../../styles'; export type StackAlignment = 'stretch' | 'flex-start' | 'center' | 'flex-end'; export interface StackProps extends SizeProps, SpaceProps { className?: string; children?: React.ReactNode; spacing?: CSSValueWithLength; }