/// /** * Stack is a layout component that makes it easy to stack elements together and apply a space between them. It uses a modified version of the CSS lobotomized owl selector to add spacing between its children. * Stack: Used to add spacing between elements in the horizontal or vertical direction. It supports responsive values. * https://chakra-ui.com/docs/layout/stack */ export declare function Stack({ ...props }: any): JSX.Element; /** * HStack: Used to add spacing between elements in horizontal direction, and centers them. * https://chakra-ui.com/docs/layout/stack */ export declare function HStack({ ...props }: any): JSX.Element; /** * VStack: Used to add spacing between elements in vertical direction only, and centers them. * https://chakra-ui.com/docs/layout/stack */ export declare function VStack({ ...props }: any): JSX.Element; //# sourceMappingURL=Stack.d.ts.map