import { InputProps } from 'naive-ui'; import { IConRenderOp, IConRightRenderOp, IConRightRenderItemOp } from './BaseCon'; import { BaseForm } from './BaseForm'; /** * 输入框 */ export declare class Input extends BaseForm { /** 控件类型 */ static ConType: string; /** 控件名字 */ static ConName: string; /** 单例对象 */ static I: Input; props: { type: InputProps["type"]; placeholder: string; clearable: boolean; maxlength: number; rows: number; showCount: boolean; }; formDefaultValue: string; constructor(); renderRaw({ formData }: IConRenderOp): import("vue/jsx-runtime").JSX.Element; getRight(op: IConRightRenderOp): IConRightRenderItemOp<"com" | "form">[]; }