import { InputExpose, InputProps, InputSlots } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = InputProps; type __VLS_Slots = InputSlots; declare const __VLS_defaultModels: { modelValue: string; }; type __VLS_ModelProps = { modelValue?: typeof __VLS_defaultModels['modelValue']; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: DefineComponent<__VLS_PublicProps, InputExpose, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { input: (value: string, evt: Event) => any; clear: (evt: Event) => any; blur: (evt: Event) => any; change: (value: string, evt: Event) => any; focus: (evt: Event) => any; "press-enter": (value: string, evt: KeyboardEvent) => any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onInput?: ((value: string, evt: Event) => any) | undefined; onClear?: ((evt: Event) => any) | undefined; onBlur?: ((evt: Event) => any) | undefined; onChange?: ((value: string, evt: Event) => any) | undefined; onFocus?: ((evt: Event) => any) | undefined; "onPress-enter"?: ((value: string, evt: KeyboardEvent) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { size: "mini" | "small" | "medium" | "large"; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };