import { UIComponent } from './component' /** Form Component */ export declare class componentRadio extends UIComponent { /** * 是否选中 */ value:boolean /** * radio大小 * @default 18 */ size:number /** * 描述文本 */ text:string /** * 选中背景颜色 */ selectColor:string }