import * as React from 'react'; import './style/index.less'; export type RadioSize = 'xs' | 'sm' | 'md' | 'lg'; interface RadioOptions { children: React.ReactNode; disabled: boolean; value: string | number; name: string; size: RadioSize; color: string; checked: boolean; onClick: (e: React.MouseEvent) => void; } export type RadioProps = Partial; declare const Radio: React.FC; export default Radio;