import { default as dayjs } from 'dayjs'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { rangeValue?: [string, string]; hoverValue?: string; getValueClasses?: (year: string) => string[]; getItemClasses?: (year: string) => string[]; onPrev?: (newDate: dayjs.Dayjs) => boolean; onNext?: (newDate: dayjs.Dayjs) => boolean; showPrevArrow?: boolean; showNextArrow?: boolean; }; type __VLS_ModelProps = { modelValue?: dayjs.Dayjs; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_export: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { select: (value: string) => any; hover: (value: string) => any; "update:modelValue": (value: dayjs.Dayjs) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onSelect?: ((value: string) => any) | undefined; onHover?: ((value: string) => any) | undefined; "onUpdate:modelValue"?: ((value: dayjs.Dayjs) => any) | undefined; }>, { rangeValue: [string, string]; hoverValue: string; getValueClasses: (year: string) => string[]; getItemClasses: (year: string) => string[]; showPrevArrow: boolean; showNextArrow: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;