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