import { type HTMLAttributes } from "react"; export interface FormGroupProps extends HTMLAttributes { /** * Display group of elements in a compact row. */ row?: boolean; } export declare const FormGroup: import("react").ForwardRefExoticComponent>;