import * as React from 'react'; import { AsProp, BsPrefixRefForwardingComponent } from '../utils/helpers'; export interface FormGroupProps extends React.HTMLAttributes, AsProp { /** * Sets `id` on `` and `htmlFor` on ``. */ controlId?: string; } export declare const FormGroup: BsPrefixRefForwardingComponent<'div', FormGroupProps>; export default FormGroup;