import type { ExtractPropTypes } from 'vue'; import type Autocomplete from './autocomplete.vue'; import type { Placement } from '../../popper'; import type { Awaitable } from '@element-plus-next/utils'; export declare type AutocompleteData = Record[]; export declare type AutocompleteFetchSuggestionsCallback = (data: AutocompleteData) => void; export declare type AutocompleteFetchSuggestions = ((queryString: string, cb: AutocompleteFetchSuggestionsCallback) => Awaitable | void) | AutocompleteData; export declare const autocompleteProps: { readonly valueKey: import("@element-plus-next/vue-utils").EpPropFinalized; readonly modelValue: import("@element-plus-next/vue-utils").EpPropFinalized; readonly debounce: import("@element-plus-next/vue-utils").EpPropFinalized; readonly placement: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => Placement & {}) | (() => Placement) | ((new (...args: any[]) => Placement & {}) | (() => Placement))[], "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end", unknown, "bottom-start", boolean>; readonly fetchSuggestions: import("@element-plus-next/vue-utils").EpPropFinalized<(new (...args: any[]) => AutocompleteData | ((queryString: string, cb: AutocompleteFetchSuggestionsCallback) => Awaitable | void)) | (() => AutocompleteFetchSuggestions) | ((new (...args: any[]) => AutocompleteData | ((queryString: string, cb: AutocompleteFetchSuggestionsCallback) => Awaitable | void)) | (() => AutocompleteFetchSuggestions))[], unknown, unknown, () => void, boolean>; readonly popperClass: import("@element-plus-next/vue-utils").EpPropFinalized; readonly triggerOnFocus: import("@element-plus-next/vue-utils").EpPropFinalized; readonly selectWhenUnmatched: import("@element-plus-next/vue-utils").EpPropFinalized; readonly hideLoading: import("@element-plus-next/vue-utils").EpPropFinalized; readonly label: { readonly type: import("@vue/runtime-core").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly teleported: import("@element-plus-next/vue-utils").EpPropFinalized; readonly highlightFirstItem: import("@element-plus-next/vue-utils").EpPropFinalized; readonly fitInputWidth: import("@element-plus-next/vue-utils").EpPropFinalized; }; export declare type AutocompleteProps = ExtractPropTypes; export declare const autocompleteEmits: { "update:modelValue": (value: string) => boolean; input: (value: string) => boolean; change: (value: string) => boolean; focus: (evt: FocusEvent) => boolean; blur: (evt: FocusEvent) => boolean; clear: () => boolean; select: (item: { value: any; }) => boolean; }; export declare type AutocompleteEmits = typeof autocompleteEmits; export declare type AutocompleteInstance = InstanceType;