import { RefObject } from 'react'; type UseListNavigationProps = { /** Ref til et element med rollen `listbox` */ ref: RefObject; }; export declare function useListNavigation({ ref, }: UseListNavigationProps): void; export {};