import { RefObject } from 'react'; /** Reference to a 2D array of slot buttons: [dayIndex][slotIndex] */ export type WeekViewControlsRef = RefObject; export interface HandleWeekViewKeyDownInput { controlsRef: WeekViewControlsRef; dayIndex: number; slotIndex: number; event: React.KeyboardEvent; } export declare function handleWeekViewKeyDown({ controlsRef, dayIndex, slotIndex, event, }: HandleWeekViewKeyDownInput): void;