import { Option } from 'effect'; /** Finds the first enabled item whose search text starts with the query, searching forward from the active item and wrapping around. On a fresh search, starts after the active item; on a refinement, includes the active item. */ export declare const resolveTypeaheadMatch: (items: ReadonlyArray, query: string, maybeActiveItemIndex: Option.Option, isDisabled: (index: number) => boolean, itemToSearchText: (item: Item, index: number) => string, isRefinement: boolean) => Option.Option; //# sourceMappingURL=typeahead.d.ts.map