import { SelectOption } from '../../types'; declare const useKeyNavigation: () => { handleKeyDown: (e: React.KeyboardEvent) => void; handleSelect: (option: SelectOption, selectedWithKey?: boolean) => void; handleSelectAll: (selected: boolean, selectedWithKey?: boolean) => void; removeFocusClass: () => void; }; export default useKeyNavigation;