import { ExtractPropTypes, PropType } from 'vue'; import type Calendar from './Calendar.vue'; export declare type CalendarDateType = 'prev-month' | 'next-month' | 'prev-year' | 'next-year' | 'today'; export declare const calendarEmits: { "update:modelValue": (value: Date) => boolean; input: (value: Date) => boolean; }; export declare const calendarProps: { modelValue: { type: DateConstructor; }; range: { type: PropType; validator: (range: unknown) => range is [Date, Date]; }; }; export declare type CalendarProps = ExtractPropTypes; export declare type CalendarEmits = typeof calendarEmits; export declare type CalendarInstance = InstanceType;