///
import { RadioGroupProps as MuiRadioGroupProps } from '@material-ui/core/RadioGroup';
import { FieldProps } from 'formik';
export interface RadioGroupProps extends FieldProps, Omit {
}
export declare function fieldToRadioGroup({ field: { onBlur: fieldOnBlur, ...field }, form, onBlur, ...props }: RadioGroupProps): MuiRadioGroupProps;
export declare function RadioGroup(props: RadioGroupProps): JSX.Element;
export declare namespace RadioGroup {
var displayName: string;
}