import { ReactNode } from 'react';
export interface PageFormGroupProps {
    fieldId?: string;
    icon?: ReactNode;
    label?: string;
    labelHelp?: string | string[] | ReactNode;
    labelHelpTitle?: string;
    isRequired?: boolean;
    additionalControls?: ReactNode;
    children?: ReactNode;
    helperText?: string;
    helperTextInvalid?: string | string[] | false;
    fullWidth?: boolean;
}
export declare function PageFormGroup(props: PageFormGroupProps): import("react/jsx-runtime").JSX.Element;
