/// <reference types="react" />
export interface IFormGroupContainerProps {
    title: string;
    /**
     * @property {string}
     * Additional class name for <fieldset>
     */
    classNameFieldset?: string;
    children: React.ReactNode;
}
declare const FormGroupContainer: ({ classNameFieldset, title, children }: IFormGroupContainerProps) => import("react/jsx-runtime").JSX.Element;
export default FormGroupContainer;
//# sourceMappingURL=FormGroupContainer.d.ts.map