import type { VmSize, VmIcon, HandleEvent } from '..'; import type { InputType, InputUpdate } from './src/interface'; import type { DefineComponent, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue'; import type { Install, BasicType } from '../_utils'; import Input from "./src/input"; export declare const VInput: Install, string | number | null>; readonly type: BasicType, InputType | null>; readonly size: BasicType, VmSize | null>; readonly disabled: BasicType; readonly max: BasicType; readonly min: BasicType; 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; 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; }>>; /** input 组件实例类型 */ export type InputInstance = InstanceType; export * from './src/interface'; export default VInput;