import React from 'react'; import './_style/index.less'; export interface BaseRadioProps { prefixCls?: string; className?: string; customOnClick?: (data: any) => {}; check?: boolean; } export declare type RadioProps = BaseRadioProps & React.HTMLProps; declare const Radio: React.FC; export default Radio;