import * as React from 'react'; import { StandardProps } from '..'; import { FormGroupProps, FormGroupClassKey } from '../Form/FormGroup'; export interface RadioGroupProps extends StandardProps { name?: string; onChange?: (event: React.ChangeEvent<{}>, value: string) => void; value?: string; } export type RadioGroupClassKey = FormGroupClassKey; declare const RadioGroup: React.ComponentType; export default RadioGroup;