export default RadioField; declare function RadioField({ radioValue, input: { value, ...otherInput }, meta, ...other }: { [x: string]: any; radioValue: any; input: { [x: string]: any; value: any; }; meta: any; }): JSX.Element; declare namespace RadioField { namespace propTypes { const input: PropTypes.Validator; const meta: PropTypes.Validator; } } import PropTypes from "prop-types";