import { FC, HTMLAttributes, InputHTMLAttributes } from 'react'; declare const Radio: FC; export declare const RadioGroup: FC; interface RadioProps extends InputHTMLAttributes { value: string; } interface RadioGroupProps extends HTMLAttributes { value: any; defaultValue: string; } export { Radio };