import type { BasicType, VmSize, VmIcon, HandleEvent } from '../..'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { InputUpdate, InputType } from './interface'; declare const _sfc_main: DefineComponent<{ readonly modelValue: BasicType, string | number | null>; readonly type: BasicType, InputType | null>; readonly size: BasicType, VmSize | null>; readonly disabled: BasicType; readonly max: BasicType; readonly min: BasicType; /** * 点击搜索 * * @see KeyboardEvent https://developer.mozilla.org/zh-CN/docs/Web/API/KeyboardEvent * @param { Object } evt 事件对象 */ readonly maxLength: BasicType; readonly fontSize: BasicType, string | number | null>; readonly autofocus: BasicType; readonly name: BasicType, string | null>; readonly placeholder: BasicType, string | null>; readonly placeholderColor: BasicType, string | null>; readonly clear: BasicType; readonly width: BasicType, string | number | null>; readonly height: BasicType, string | number | null>; readonly search: BasicType; /** 类名列表 */ readonly background: BasicType, string | null>; readonly textColor: BasicType, string | null>; readonly activeBackground: BasicType, string | null>; readonly activeBorderColor: BasicType, string | null>; readonly readonly: BasicType; readonly showPassword: BasicType; readonly enterSearch: BasicType; readonly icon: BasicType, null>; readonly afterIcon: BasicType, null>; readonly autocomplete: BasicType, string | null>; readonly onSearch: BasicType, null>; readonly onChange: BasicType, null>; readonly onInput: BasicType, null>; readonly onBlur: BasicType, null>; readonly onFocus: BasicType, null>; readonly onEnter: BasicType, null>; }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (val: string | number) => boolean; }, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly, string | number | null>; readonly type: BasicType, InputType | null>; readonly size: BasicType, VmSize | null>; readonly disabled: BasicType; readonly max: BasicType; readonly min: BasicType; /** * 点击搜索 * * @see KeyboardEvent https://developer.mozilla.org/zh-CN/docs/Web/API/KeyboardEvent * @param { Object } evt 事件对象 */ readonly maxLength: BasicType; readonly fontSize: BasicType, string | number | null>; readonly autofocus: BasicType; readonly name: BasicType, string | null>; readonly placeholder: BasicType, string | null>; readonly placeholderColor: BasicType, string | null>; readonly clear: BasicType; readonly width: BasicType, string | number | null>; readonly height: BasicType, string | number | null>; readonly search: BasicType; /** 类名列表 */ readonly background: BasicType, string | null>; readonly textColor: BasicType, string | null>; readonly activeBackground: BasicType, string | null>; readonly activeBorderColor: BasicType, string | null>; readonly readonly: BasicType; readonly showPassword: BasicType; readonly enterSearch: BasicType; readonly icon: BasicType, null>; readonly afterIcon: BasicType, null>; readonly autocomplete: BasicType, string | null>; readonly onSearch: BasicType, null>; readonly onChange: BasicType, null>; readonly onInput: BasicType, null>; readonly onBlur: BasicType, null>; readonly onFocus: BasicType, null>; readonly onEnter: BasicType, null>; }>> & { "onUpdate:modelValue"?: ((val: string | number) => any) | undefined; }, { readonly type: InputType; readonly fontSize: string | number; readonly background: string; readonly width: string | number; readonly icon: VmIcon; readonly size: VmSize; readonly max: number; readonly disabled: boolean; readonly autofocus: boolean; readonly name: string; readonly afterIcon: VmIcon; readonly modelValue: string | number; readonly onChange: InputUpdate; readonly height: string | number; readonly textColor: string; readonly readonly: boolean; readonly min: number; readonly maxLength: number; readonly placeholder: string; readonly placeholderColor: string; readonly clear: boolean; readonly search: boolean; readonly activeBackground: string; readonly activeBorderColor: string; readonly showPassword: boolean; readonly enterSearch: boolean; readonly autocomplete: string; readonly onSearch: InputUpdate; readonly onInput: InputUpdate; readonly onBlur: HandleEvent; readonly onFocus: HandleEvent; readonly onEnter: HandleEvent; }>; export default _sfc_main;