import React from 'react'; import type { DropdownOption, OptionDefinition } from '../../internal/components/option/interfaces'; interface UseNativeSearchProps { isEnabled: boolean; options: ReadonlyArray; highlightOption: (option: DropdownOption) => void; highlightedOption: OptionDefinition | undefined | null; useInteractiveGroups?: boolean; } export declare function useNativeSearch({ isEnabled, options, highlightOption, highlightedOption, useInteractiveGroups }: UseNativeSearchProps): (event: React.KeyboardEvent) => void; export {};