import React from "react";
interface FlexProps extends React.HTMLProps<HTMLDivElement> {
    direction?: "row" | "col";
    wrap?: "wrap" | "nowrap";
    align?: "start" | "center" | "end" | "stretch";
    justify?: "start" | "center" | "end" | "between" | "around";
    gap?: number;
}
declare const Flex: React.FC<FlexProps>;
export default Flex;
