type Props = {
    labelFor?: string;
    label?: string;
    labelSize?: "s" | "xs";
    labelRightContent?: React.ReactNode;
    children: React.ReactElement;
    helpText?: React.ReactNode;
    errors?: string[];
    isRequired?: boolean;
    inline?: boolean;
};
export declare const VuiFormGroup: ({ children, labelFor, helpText, label, labelSize, labelRightContent, errors, isRequired, inline }: Props) => import("react/jsx-runtime").JSX.Element;
export {};
