import React, { ReactNode } from 'react'; export declare const useKeyboardNavigation: ({ orientation, direction, ref, onKeyDown, }?: import("@volvo-cars/react-aria").UseKeyboardNavigationResults & { orientation?: "horizontal" | "vertical"; direction?: "ltr" | "rtl"; }) => { ref: React.MutableRefObject; onKeyDown: React.KeyboardEventHandler; }, KeyboardNavigationProvider: React.FC<{ children: React.ReactNode; }>; export type NavProps = { /** Automatically hide the sticky navigation if the user starts scrolling */ hideOnScroll?: boolean; /** Make the navigation stick to the top of the viewport */ sticky?: boolean; /** A JSX node */ children?: ReactNode; }; /** * @deprecated Use `