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