import React from 'react'; import type { DropdownOption } from '../../internal/components/option/interfaces'; import type { OptionDefinition } from '../../types/option'; 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 {};