import { type MutableRefObject } from 'react'; import type { CalendarContextProps } from '../contexts/CalendarContext.js'; export interface UseCalendarNavigationProps extends Pick { calendarRef: MutableRefObject; } /** Custom hook for adding keyboard support to the calendar. */ export declare function useCalendarNavigation({ calendarRef, state, dispatch, }: UseCalendarNavigationProps): void;