declare type FormGroupProps = { aria?: { [key: string]: string; }; children?: Node; className?: string; data?: object; fullWidth?: boolean; id?: string; }; declare const FormGroup: (props: FormGroupProps) => JSX.Element; export default FormGroup;