import * as React from "react";
import { HTMLAttributes } from "react";
export interface FlexProps extends HTMLAttributes<HTMLDivElement> {
    justify?: "start" | "end" | "center" | "between" | "around" | "evenly";
    align?: "start" | "end" | "center" | "baseline" | "stretch";
    direction?: "row" | "column" | "rowReverse" | "columnReverse";
}
export declare const Flex: React.ForwardRefExoticComponent<FlexProps & React.RefAttributes<HTMLDivElement>>;
export declare const Box: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
