import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface FormGroupProps extends NativeElementPropsWithoutKeyAndRef<'div'> { /** * Additional className to apply to the fields' container. */ fieldsContainerClassName?: string; /** * The title text for the form group. */ title: string; } /** * The React component for `mezzanine` form group. */ declare const FormGroup: import("react").ForwardRefExoticComponent>; export default FormGroup;