import type React from 'react'; import type { DSLeftNavigationT } from '../react-desc-prop-types.js'; type UseKeyboardNavigationProps = { item: DSLeftNavigationT.GenericItemItemProps; onClick: (e: any) => void; }; export declare const useKeyboardNavigation: ({ item, onClick }: UseKeyboardNavigationProps) => React.KeyboardEventHandler; export {};