import type { CalendarFocusMovement } from './calendarModel'; export type CalendarKeyboardCommand = Readonly<{ type: 'move'; movement: CalendarFocusMovement; }> | Readonly<{ type: 'activate'; }>; export declare function resolveCalendarKeyboardCommand(key: string, shiftKey: boolean, direction: 'ltr' | 'rtl'): CalendarKeyboardCommand | null; //# sourceMappingURL=calendarInteractions.d.ts.map