import type { Dispatch, SetStateAction } from 'react'; import type { CalendarViewMode, FreeSlotSelection, ResourceCellPick, TransitioningToDayState } from '../bookingCalendarInternalTypes'; export declare function useBookingCalendarGoToDayFromCell(anchorDate: Date, commitAnchor: (d: Date) => void, commitView: (v: CalendarViewMode) => void, setNavDirection: Dispatch>, setTransitioningToDay: Dispatch>, setSelectedFreeSlots: Dispatch>, setSelectedBlockSlots: Dispatch>, setSelectedResourceCells: Dispatch>, setFocusedCourtId: Dispatch>): (day: Date, courtId: string | null, source: string) => void;