import { FC } from 'react'; declare type RadioInputProps = { type?: any; children: any; value?: any; onChange?: (event: any) => void; }; declare const RadioInput: FC; export default RadioInput;