export declare const calendarMonthCommon: (props: any, emit: any) => { isEndDay: (day: any) => boolean; isStartDay: (day: any) => boolean; updateSelection: () => void; refreshDisabledDays: () => void; getMinDateInMonth: () => Date; getLastDayInRangeForMonth: (date: any, month: any) => any; getFirstDayInRangeForMonth: (date: any, month: any) => any; isMonthInRange: () => boolean; navigate: (navigation: any) => void; selectDay: (day: any) => void; monthName: import("vue").ComputedRef; dayNames: string[]; selectedDays: import("vue").Ref; selectedDaysMap: import("vue").Ref<{}>; inBetweenMap: import("vue").Ref<{}>; };