import type { ElementType } from "react"; import React from "react"; import type { SpaceSizes, MQ } from "../../../types"; export type FormFieldGroupProps = { label?: string; labelAs?: ElementType; isLabelHidden?: boolean; labelHint?: string; children: React.ReactNode[] | React.ReactElement; errorMessages?: string[]; hint?: string; disabled?: boolean; inline?: boolean; space?: SpaceSizes | MQ; "data-e2e-test-id"?: string; }; export declare function FormFieldGroup({ children, label, labelAs, isLabelHidden, labelHint, errorMessages, hint, disabled, inline, space, "data-e2e-test-id": dataE2eTestId, ...ariaAttributes }: FormFieldGroupProps): React.ReactElement;