import type { JSX, JSXElement } from "solid-js";
export interface FlexProps {
    vertical?: boolean;
    reverse?: boolean;
    fill?: boolean;
    full?: boolean;
    wrap?: JSX.CSSProperties["flex-wrap"];
    justify?: JSX.CSSProperties["justify-content"];
    align?: JSX.CSSProperties["align-items"];
    flex?: JSX.CSSProperties["flex"];
    gap?: JSX.CSSProperties["gap"];
    children: JSXElement;
}
export declare const Flex: import("solid-js").Component<import("@cn-ui/reactive").OriginComponentOutputType<FlexProps, HTMLElement, string>>;
