import React from "react"; type Props = { ref: React.RefObject; disabled?: boolean; orientation?: "vertical" | "horizontal"; circular?: boolean; }; declare const useKeyboardArrowNavigation: (props: Props) => void; export default useKeyboardArrowNavigation;