import { Ref, ComponentPublicInstance } from 'vue'; export interface CalendarKeyboardNavigationOptions { isDatePickerVisible: Ref; datePickerRef: Ref; getCurrentDate: () => Date | null; setCurrentDate: (date: Date) => void; } export declare const useCalendarKeyboardNavigation: (options: CalendarKeyboardNavigationOptions) => { attachListeners: () => void; detachListeners: () => void; };