import type { PropsFor } from "../../types.js";
export type FieldGroupItemProps = PropsFor<"div", {
    /** Reduce the height to match other `small` inputs */
    small?: boolean;
}>;
declare const FieldGroupItem: import("react").ForwardRefExoticComponent<FieldGroupItemProps & import("react").RefAttributes<HTMLDivElement>>;
export default FieldGroupItem;
