export declare const useFormGroup: (controlId?: string) => {
    /**
     * The `id` of the `<Form.Control>` component.
     */
    controlId: string;
    /**
     * The `id` of the `<Form.HelpText>` component.
     */
    helpTextId: string;
    /**
     * The `id` of the `<Form.ControlLabel>` component.
     */
    labelId: string;
    /**
     * The `id` of the `<Form.ErrorMessage>` component.
     */
    errorMessageId: string;
};
