import React from 'react'; export interface RadioProps { className: string; /** 指定当前选中状态 */ checked: boolean; /** 默认选中状态 */ defaultChecked: boolean; /** 选中时的值 */ name: string; groupValue: Array; /** 禁用状态 */ disabled: boolean; /** 颜色 */ color: string; /** 发生变化的回调 */ onChange: (checked: boolean, value: any) => void; formValue: boolean; setFormValue: (value: any) => void; } export declare const Checkbox: React.FC>; export default Checkbox;