import { type JSX, type Ref } from "preact"; import type { FlexProps } from "../types"; declare function FlexForwarded({ Component, class: realClassName, className, style, children, direction, align, wrap, scroll, overflow, gap, width, minWidth, maxWidth, height, minHeight, maxHeight, noShrink, ...props }: FlexProps & Omit, keyof FlexProps>, ref?: Ref): JSX.Element; /** * Creates a `div` element with abstracted CSS Flexbox properties. */ export declare const Flex: typeof FlexForwarded; export {};