type __VLS_Props = { id?: string; /** 是否显示四周边框 */ outline?: boolean; label?: string; placeholder?: string; htmlType?: 'text' | 'number' | 'password' | 'tel'; name?: string; inputmode?: 'text' | 'numeric' | 'decimal' | 'tel'; }; declare function focus(): void; type __VLS_ModelProps = { modelValue?: string | number; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: import('vue').DefineComponent<__VLS_PublicProps, { focus: typeof focus; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { blur: (...args: any[]) => void; focus: (...args: any[]) => void; "update:modelValue": (value: string | number | undefined) => void; }, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onBlur?: ((...args: any[]) => any) | undefined; onFocus?: ((...args: any[]) => any) | undefined; "onUpdate:modelValue"?: ((value: string | number | undefined) => any) | undefined; }>, { htmlType: "text" | "number" | "password" | "tel"; outline: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;