import { IConRenderOp, IConRightRenderOp, IConRightRenderItemOp } from './BaseCon'; import { BaseOption } from './BaseOption'; /** * 单选框 */ export declare class Radio extends BaseOption { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: Radio; props: { button: boolean; }; formDefaultValue: string; renderRaw({ formData }: IConRenderOp): import("vue/jsx-runtime").JSX.Element; getRight(op: IConRightRenderOp): IConRightRenderItemOp<"com" | "form">[]; }