import type { JSX } from '../../stencil-public-runtime';
import type { ComboboxAPI, ComboboxStates, DisabledPropType, FocusableElement, HideLabelPropType, HideMsgPropType, HintPropType, IconsHorizontalPropType, InputTypeOnDefault, LabelWithExpertSlotPropType, MsgPropType, NamePropType, PlaceholderPropType, RequiredPropType, ShortKeyPropType, Stringified, SuggestionsPropType, SyncValueBySelectorPropType, TooltipAlignPropType, VariantClassNamePropType } from '../../schema';
export declare class KolCombobox implements ComboboxAPI, FocusableElement {
    protected readonly host?: HTMLKolComboboxElement;
    protected readonly ctaRef: import("../../utils/element-interaction").CtaRef<HTMLInputElement>;
    private refSuggestions;
    private _focusedOptionIndex;
    private readonly translateDeleteSelection;
    private clearButtonFocused;
    getValue(): Promise<string>;
    focus(): Promise<void>;
    click(): Promise<void>;
    private toggleListbox;
    private selectOption;
    private clearSelection;
    private onInput;
    private handleKeyDownDropdown;
    private setFilteredSuggestionsByQuery;
    private moveFocus;
    private focusOption;
    private selectFocusedOption;
    private focusSuggestionStartingWith;
    private getFormFieldProps;
    private getInputProps;
    render(): JSX.Element;
    handleKeyDown(event: KeyboardEvent): void;
    private readonly controller;
    private blockSuggestionMouseOver;
    private _isOpen;
    private _filteredSuggestions?;
    handleWindowClick(event: MouseEvent): void;
    _accessKey?: string;
    _placeholder?: string;
    _disabled?: boolean;
    _hideMsg?: boolean;
    _hideLabel?: boolean;
    _hint?: string;
    _icons?: IconsHorizontalPropType;
    _label: LabelWithExpertSlotPropType;
    _msg?: Stringified<MsgPropType>;
    _name?: NamePropType;
    _on?: InputTypeOnDefault;
    _hasClearButton?: boolean;
    _suggestions: SuggestionsPropType;
    _required?: boolean;
    _shortKey?: ShortKeyPropType;
    _syncValueBySelector?: SyncValueBySelectorPropType;
    _tooltipAlign?: TooltipAlignPropType;
    _touched?: boolean;
    _value?: string;
    _variant?: VariantClassNamePropType;
    state: ComboboxStates;
    private inputHasFocus;
    constructor();
    private showAsAlert;
    validatePlaceholder(value?: PlaceholderPropType): void;
    validateAccessKey(value?: string): void;
    validateDisabled(value?: DisabledPropType): void;
    validateHideMsg(value?: HideMsgPropType): void;
    validateHideLabel(value?: HideLabelPropType): void;
    validateHint(value?: HintPropType): void;
    validateIcons(value?: IconsHorizontalPropType): void;
    validateLabel(value?: LabelWithExpertSlotPropType): void;
    validateMsg(value?: Stringified<MsgPropType>): void;
    validateName(value?: string): void;
    validateOn(value?: InputTypeOnDefault): void;
    validateShortKey(value?: ShortKeyPropType): void;
    validateSuggestions(value?: SuggestionsPropType): void;
    validateHasClearButton(value?: boolean): void;
    validateRequired(value?: RequiredPropType): void;
    validateSyncValueBySelector(value?: SyncValueBySelectorPropType): void;
    validateTouched(value?: boolean): void;
    validateValue(value?: string): void;
    validateVariant(value?: VariantClassNamePropType): void;
    componentWillLoad(): void;
    handleMouseEvent(): void;
    handleFocusIn(event: FocusEvent): void;
    handleFocusOut(event: FocusEvent): void;
    private onChange;
}
