import { C as ComboboxConfig, a as AccessibilityInstance } from '../Types.d-BEsUjX-3.js'; /** * Makes a Combobox accessible by adding appropriate ARIA attributes, keyboard interactions and focus management. * @param {string} comboboxInputId - The id of the combobox input element. * @param {string} comboboxButtonId - The id of the button that toggles the listbox (optional). * @param {string} listBoxId - The id of the listbox element. * @param {string} listBoxItemsClass - The class of the items within the listbox. * @param {ComboboxCallback} callback - Configuration options for callbacks. */ declare function makeComboboxAccessible({ comboboxInputId, comboboxButtonId, listBoxId, listBoxItemsClass, callback }: ComboboxConfig): AccessibilityInstance; export { makeComboboxAccessible };