import type { PolymorphicComponent } from "../types/helpers"; /** * Container components provide layout structure and organization. * * @example Basic usage * * ```tsx * Content goes here; * ``` * * @alpha */ export declare const Container: PolymorphicComponent<"div", {}>; /** @alpha */ export interface BaseFlexContainerProps { /** The flex layout variant */ variant?: "space-between" | "center" | "align-center"; } /** * A flexible container with built-in flexbox layout variants. * * @example Space between * * ```tsx * * Left * Right * ; * ``` * * @example Center * * ```tsx * * Centered Content * ; * ``` * * @example Align center * * ```tsx * * Vertically Centered Content * ; * ``` * * @alpha */ export declare const FlexContainer: PolymorphicComponent<"div", BaseFlexContainerProps>; /** * A flex form component that aligns all form items in a single line. * * @example Basic usage * * ```tsx * { * e.preventDefault(); * alert("Form submitted!"); * }} * > * * * * * ; * ``` * * @alpha */ export declare const FlexForm: PolymorphicComponent<"form", {}>; //# sourceMappingURL=Container.d.ts.map