import { default as dayjs } from 'dayjs'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { valueFormat?: string; rangeValue?: [string, string]; hoverValue?: string; getValueClasses?: (month: string) => string[]; getItemClasses?: (month: 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 | null) => any; "update:modelValue": (value: dayjs.Dayjs) => any; "to-year-view": () => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onSelect?: ((value: string) => any) | undefined; onHover?: ((value: string | null) => any) | undefined; "onUpdate:modelValue"?: ((value: dayjs.Dayjs) => any) | undefined; "onTo-year-view"?: (() => any) | undefined; }>, { valueFormat: string; rangeValue: [string, string]; hoverValue: string; getValueClasses: (month: string) => string[]; getItemClasses: (month: string) => string[]; showPrevArrow: boolean; showNextArrow: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const _default: typeof __VLS_export; export default _default;