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