import { FlexbundleApi, ValueLabelPair } from "../../../core/FlexDictionary"; import { DatalistOption } from "../../datalist/DatalistHelper"; export declare class UserAutocompleteComponent { private errors; private ref; private inputElement; private config; private helper; private fetchingSuggestionsReference; private isFocused; private oldValue; private valueEmail; rootElement: HTMLElement; name: string; label: string; placeholder: string; aid: string; value: ValueLabelPair; api: FlexbundleApi; inline: boolean; readOnly: boolean; required: boolean; includeGroups: boolean; loadingSuggestions: boolean; isValid: boolean; open: boolean; options: DatalistOption[]; loading: boolean; connectedCallback(): void; handleFocus(): void; handleBlur(): void; toHandleBlur(): boolean; handleToggle(event: CustomEvent): void; handleSelect(event: CustomEvent): void; resetValue(): void; toggleOptions(): void; render(): any; renderOptions(): any; renderAvatar(): any; getAvatarThumb(data: any): any; private resolveSuggestions; }