1 | import * as React from 'react';
|
2 | import { AsProp, BsPrefixRefForwardingComponent } from './helpers';
|
3 | export interface FormGroupProps extends React.HTMLAttributes<HTMLElement>, AsProp {
|
4 | controlId?: string;
|
5 | }
|
6 | declare const FormGroup: BsPrefixRefForwardingComponent<'div', FormGroupProps>;
|
7 | export default FormGroup;
|