import { AutoComplete } from '@wix/design-system'; import { TypedEmitter } from '@wix/bex-core/events'; export declare class AutoCompleteReadonlyState { disableEditing: boolean; isFocused: boolean; autoComplete: AutoComplete | null; clearInput?: () => void; readonly events: TypedEmitter<{ blur: () => unknown; }>; constructor(); onFocus: () => void; onBlur: () => void; onItemClick: () => void; onClickOutside: () => void; onInputClearButtonClick: () => void; onTabKeyDown: () => void; onSelect: () => void; onOptionsShow: () => void; } //# sourceMappingURL=AutoCompleteReadonlyState.d.ts.map