export type CalendarGestureProps = { goToPreviousMonth: (cb?: () => void) => void; goToNextMonth: (cb?: () => void) => void; }; export type WithCalendarGestureInjectedProps = CalendarGestureProps & { onKeyDown: (e: React.KeyboardEvent, ref: HTMLElement | null, dayIndex: number) => void; };