import { FC, InputHTMLAttributes, Ref } from 'react'; import { RadioValueType } from './RadioGroup'; /** * */ export type RadioProps = { label?: string; name?: string; value?: RadioValueType; inputRef?: Ref; } & Omit, 'value'>; /** * */ export declare const Radio: FC;