import * as React from 'react'; import { StandardProps } from '..'; export interface FormGroupProps extends StandardProps, FormGroupClassKey> { row?: boolean; } export type FormGroupClassKey = 'root' | 'row'; declare const FormGroup: React.ComponentType; export default FormGroup;