interface FormItemProps { /** 标签 */ type?: string; /** 原生属性 */ name?: string; /** 原生属性 */ placeholder?: string; modelValue?: string | number; autocomplete?: "on" | "off"; /** 最小值,当 type 为 positive-int 时有效 */ min?: number; /** 最大值,当 type 为 positive-int 时有效 */ max?: number; } /** 获取焦点 */ declare function focus(): void; declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps, { type: string; name: string; placeholder: string; autocomplete: string; }>, { focus: typeof focus; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { "update:modelValue": (...args: any[]) => void; }, string, import("vue").PublicProps, Readonly, { type: string; name: string; placeholder: string; autocomplete: string; }>>> & { "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined; }, { type: string; name: string; placeholder: string; autocomplete: "on" | "off"; }, {}>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};