import { FC } from 'react'; import { SemanticWIDTHS } from '../../utilities/SemanticUtils'; export interface FormGroupPropsStrict { /** Additional classes */ className?: string; /** Element to use for base component */ el?: any; /** Display fields vertically grouped */ grouped?: boolean; /** Display labels and fields in a row */ inline?: boolean; /** Set all Form Fields to be specific widths */ widths?: SemanticWIDTHS | 'equal'; } export interface FormGroupProps extends FormGroupPropsStrict { /** Unstrict Props */ [propName: string]: any; } export declare const FormGroup: FC;