import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue'; import type Autocomplete from './autocomplete.vue'; import type { Awaitable } from '@hd-front-end/element-plus/es/utils'; export type AutocompleteData = Record[]; export type AutocompleteFetchSuggestionsCallback = (data: AutocompleteData) => void; export type AutocompleteFetchSuggestions = ((queryString: string, cb: AutocompleteFetchSuggestionsCallback) => Awaitable | void) | AutocompleteData; export declare const autocompleteProps: { readonly valueKey: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly modelValue: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly debounce: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly placement: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, "top" | "bottom" | "top-start" | "top-end" | "bottom-start" | "bottom-end", unknown, "bottom-start", boolean>; readonly fetchSuggestions: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => void, boolean>; readonly popperClass: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly popperStyle: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly triggerOnFocus: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly selectWhenUnmatched: BooleanConstructor; readonly hideLoading: BooleanConstructor; readonly teleported: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly appendTo: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly highlightFirstItem: BooleanConstructor; readonly fitInputWidth: BooleanConstructor; readonly loopNavigation: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly inputmode: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, undefined, boolean>; readonly name: StringConstructor; readonly ariaLabel: StringConstructor; readonly id: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly size: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabled: BooleanConstructor; readonly maxlength: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly minlength: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly type: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly resize: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly autosize: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, false, boolean>; readonly autocomplete: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, "off", boolean>; readonly formatter: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly parser: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly placeholder: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly form: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly readonly: BooleanConstructor; readonly clearable: BooleanConstructor; readonly clearIcon: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly showPassword: BooleanConstructor; readonly showWordLimit: BooleanConstructor; readonly suffixIcon: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly prefixIcon: { readonly type: ExtractPropTypes; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly containerRole: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly tabindex: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly validateEvent: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; readonly inputStyle: import("@hd-front-end/element-plus/es/utils").EpPropFinalized, unknown, unknown, () => import("@hd-front-end/element-plus/es/utils").Mutable<{}>, boolean>; readonly autofocus: BooleanConstructor; readonly rows: import("@hd-front-end/element-plus/es/utils").EpPropFinalized; }; export type AutocompleteProps = ExtractPropTypes; export type AutocompletePropsPublic = __ExtractPublicPropTypes; export declare const autocompleteEmits: { "update:modelValue": (value: string | number) => boolean; input: (value: string | number) => boolean; change: (value: string | number) => boolean; focus: (evt: FocusEvent) => boolean; blur: (evt: FocusEvent) => boolean; clear: () => boolean; select: (item: Record) => boolean; }; export type AutocompleteEmits = typeof autocompleteEmits; export type AutocompleteInstance = InstanceType & unknown;