/// /** * Flex is Box with display: flex and comes with helpful style shorthand. It renders a div element. * With Flex and Spacer, the children will span the entire width of the container and also have equal spacing between them. * https://chakra-ui.com/docs/layout/flex */ export declare function Flex({ ...props }: any): JSX.Element; /** * Spacer: Creates an adjustable, empty space that can be used to tune the spacing between child elements within Flex. * As an alternative to Stack, you can combine Flex and Spacer to create stackable and responsive layouts. * A good use case for Spacer is to create a navbar with a signup/login button aligned to the right. * https://chakra-ui.com/docs/layout/flex */ export declare function Spacer({ ...props }: any): JSX.Element; //# sourceMappingURL=Flex.d.ts.map