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