import { SFCWithInstall } from '@chenms-zj/utils/with-install'; import { CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, ComponentOptionsMixin, PublicProps, GlobalComponents, GlobalDirectives, ComponentProvideOptions, ComponentOptionsBase, VNodeProps, AllowedComponentProps, ComponentCustomProps } from 'vue'; import { CalendarDateCellType } from './src/calendar'; declare const Calendar: SFCWithInstall<{ new (...args: any[]): CreateComponentPublicInstanceWithMixins; }; }>> & Readonly<{ "onUpdate:modelValue"?: ((val: Date) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (val: Date) => void; }, PublicProps, {}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, HTMLDivElement, ComponentProvideOptions, { P: {}; B: {}; D: {}; C: {}; M: {}; Defaults: {}; }, Readonly< ExtractPropTypes<{ readonly modelValue: { readonly type: DateConstructor; }; readonly range: { readonly type: PropType<[Date, Date]>; }; }>> & Readonly<{ "onUpdate:modelValue"?: ((val: Date) => any) | undefined; }>, {}, {}, {}, {}, {}>; __isFragment?: never; __isTeleport?: never; __isSuspense?: never; } & ComponentOptionsBase; }; }>> & Readonly<{ "onUpdate:modelValue"?: ((val: Date) => any) | undefined; }>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { "update:modelValue": (val: Date) => void; }, string, {}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => { $slots: { 'date-cell'?(_: { data: { isSelected: boolean; day: string; date: Date; type: CalendarDateCellType; }; }): any; }; })>; export default Calendar; export * from './src/calendar'; declare module "vue" { interface GlobalComponents { "cms-calendar": typeof Calendar; } }