import type { PropsFor } from "../../types.js";
export type InlineAlign = InlineProps["align"];
export type InlineProps = PropsFor<"div", {
    /** Optional custom gap as number (in px) or CSS length string (12px default) */
    gap?: number | string;
    /** Vertical alignment: "bottom", "center", or "top" (default) */
    align?: "top" | "center" | "bottom";
}>;
declare const Inline: import("react").ForwardRefExoticComponent<InlineProps & import("react").RefAttributes<HTMLDivElement>>;
export default Inline;
