import { default as React, PropsWithChildren } from 'react'; type Direction = "row" | "column" | "row-reverse" | "column-reverse"; type FlexProps = PropsWithChildren & { className?: string; direction?: Direction; }; declare const Flex: React.FC; export { Flex, type FlexProps };