import { ReactNode } from 'react'; interface Props { children: ReactNode; } export declare function Flex({ children }: Props): JSX.Element; export {};