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