import React from "react"; import { FlexProps } from "./flex"; interface StackProps extends FlexProps { horizontal?: boolean; vertical?: boolean; gap?: string; } declare function Stack({ gap, direction, reverse, className, children, ...rest }: StackProps): React.JSX.Element; export default Stack;