import type { PropsFor } from "../../types.js";
export type FieldGroupItemProps = PropsFor<"div", {
    /** Reduce the height to match other `small` inputs */
    small?: boolean;
}>;
/**
 * Static child item in a FieldGroup (usually text or an icon)
 * @visibleName FieldGroup.Item
 */
declare const FieldGroupItem: import("react").ForwardRefExoticComponent<FieldGroupItemProps & import("react").RefAttributes<HTMLDivElement>>;
export default FieldGroupItem;
