/**
 * Combobox core — headless autocomplete state machine (ADR 0034 wedge 2).
 *
 * Framework-free and DOM-free: fuzzy filtering, keyboard navigation,
 * selection state, highlight ranges, loading/empty states — all live
 * here and are verified in Node. Adapters (`trellis/combobox/react|vue|svelte|vanilla`)
 * bind it per framework.
 *
 * @module trellis/combobox
 */
import type { ComboboxConfig, UseComboboxReturn } from './types.js';
export declare function createComboboxCore(config: ComboboxConfig): UseComboboxReturn;
export type { ComboboxActions, ComboboxConfig, ComboboxFilter, ComboboxItem, ComboboxState, UseComboboxReturn, } from './types.js';
//# sourceMappingURL=index.d.ts.map