/**
 * @file wass-rct-ui
 * @description A reusable Title component that supports dynamic heading levels.
 * @author Web Apps Software Solutions
 * @copyright © 2024 Web Apps Software Solutions. All rights reserved.
 * @license MIT
 * @repository https://github.com/WebAppSoftNK/wass-rct-ui
 */
import * as React from "react";
import { AlignContent, AlignItems, AlignSelf, FlexDirection, FlexGrowShrink, FlexWrap, JustifyContent } from "../types";
export interface FlexProps {
    direction?: FlexDirection;
    wrap?: FlexWrap;
    justify?: JustifyContent;
    alignContent?: AlignContent;
    alignItems?: AlignItems;
    alignSelf?: AlignSelf;
    flexGrow?: FlexGrowShrink;
    flexShrink?: FlexGrowShrink;
    className?: string;
    children: React.ReactNode;
}
declare const FlexBox: React.NamedExoticComponent<FlexProps>;
export default FlexBox;
