import type { ExtractPropTypes } from 'vue'; export declare const calendarProps: { modelValue: { type: DateConstructor; }; range: { type: PropType<[Date, Date]>; validator: (range: unknown) => range is [Date, Date]; }; }; export type CalendarProps = ExtractPropTypes; export declare const calendarEmits: { "update:modelValue": (value: Date) => boolean; input: (value: Date) => boolean; }; export type CalendarEmits = typeof calendarEmits;