export function useCalendar(props: any, emits: any): {
    selectedDay: import('vue').Ref<null, null>;
    weekDays: import('vue').ComputedRef<string[]>;
    dayAriaLabel: (day: any) => string;
    setDayRef: (el: any, day: any) => void;
    handleKeyDown: (event: any) => void;
    focusFirstDay: () => void;
    selectDay: (day: any) => void;
};
//# sourceMappingURL=useCalendar.d.ts.map