import { BoxProps } from '../internals/Box'; export interface FormGroupProps extends BoxProps { /** * Sets id on `` and `htmlFor` on ``. * And generate ʻaria-labelledby` and ʻaria-describedby` for ``. */ controlId?: string; } /** * The `` component is the easiest way to add some structure to forms. * @see https://rsuitejs.com/components/form/ */ declare const FormGroup: import("../internals/types").InternalRefForwardingComponent<"div", FormGroupProps, never> & Record; export default FormGroup;