import { AutoCompleteExpose, AutoCompleteProps } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = AutoCompleteProps; declare const __VLS_defaultModels: { modelValue: string; }; type __VLS_ModelProps = { modelValue?: typeof __VLS_defaultModels['modelValue']; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: DefineComponent<__VLS_PublicProps, AutoCompleteExpose, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { search: (value: string) => any; clear: () => any; change: (value: string) => any; "update:modelValue": (value: string) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onSearch?: ((value: string) => any) | undefined; onClear?: (() => any) | undefined; onChange?: ((value: string) => any) | undefined; "onUpdate:modelValue"?: ((value: string) => any) | undefined; }>, { data: any[]; size: "mini" | "small" | "medium" | "large"; maxHeight: string | number; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;