import { FunctionComponent } from "react"; import { JUSTIFY, ORIENTATION, Spacing } from "../../types"; import { BoxProps } from "../Box"; export interface StackProps extends BoxProps { orientation?: ORIENTATION; spacing?: Spacing; justify?: JUSTIFY; reverse?: boolean; } export declare const Stack: FunctionComponent;