import { FunctionComponent, HTMLProps, ReactNode } from 'react'; import { Omit } from '../../typeUtils' export interface FormGroupProps extends Omit, 'label'> { isValid?: boolean; isRequired?: boolean; label?: ReactNode; helperText?: ReactNode; helperTextInvalid?: ReactNode; fieldId: string; isInline?: boolean; } declare const FormGroup: FunctionComponent; export default FormGroup;