import { ExtractPropTypes, PropType } from 'vue'; export declare const calendarProps: { readonly modelValue: { readonly type: DateConstructor; }; readonly range: { readonly type: PropType<[Date, Date]>; }; }; export type CalendarProps = Partial>; export declare const calendarEmits: { 'update:modelValue': (val: Date) => boolean; }; export type CalendarEmits = typeof calendarEmits; export type CalendarDateCellType = 'prev' | 'current' | 'next'; export type CalendarDateCell = { text: number; type: CalendarDateCellType; }; export type CalendarDateType = 'prev-month' | 'prev-year' | 'today' | 'next-month' | 'next-year';