/**
 * Copyright Zendesk, Inc.
 *
 * Use of this source code is governed under the Apache License, Version 2.0
 * found at http://www.apache.org/licenses/LICENSE-2.0.
 */
import { IUseComboboxProps, IUseComboboxReturnValue } from './types';
export declare const useCombobox: <T extends HTMLElement = HTMLElement, L extends HTMLElement = HTMLElement>({ idPrefix, triggerRef, inputRef, listboxRef, isAutocomplete, isMultiselectable, isEditable, disabled, hasHint, hasMessage, options, inputValue, selectionValue, isExpanded, defaultExpanded, initialExpanded, activeIndex, defaultActiveIndex, initialActiveIndex, onChange, environment }: IUseComboboxProps<T, L>) => IUseComboboxReturnValue;
