/** * @file RcRadio 单选类组件 */ import { UnionOmit } from '@co-hooks/util'; import React, { InputHTMLAttributes } from 'react'; export interface IRcRadio { disabled?: boolean; checked: boolean; onChange?: (e: React.ChangeEvent) => void; } export declare type IRcRadioProps = UnionOmit>; export declare function RcRadio(props: IRcRadioProps): JSX.Element;