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