type __VLS_Props = { date: Date; selectedDate?: Date | Date[] | null; selectionMode?: 'date' | 'week'; rangeState?: { from: Date | null; to: Date | null; hovering: Date | null; }; disabledDate?: (date: Date) => boolean; firstDayOfWeek?: number; cellShape?: 'round' | 'square'; cellRender?: (date: Date) => string | { text: string; className?: string; }; }; declare var __VLS_1: { cell: any; }; type __VLS_Slots = {} & { 'date-cell'?: (props: typeof __VLS_1) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & { hover: (date: Date | null) => any; select: (date: Date) => any; }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{ onHover?: ((date: Date | null) => any) | undefined; onSelect?: ((date: Date) => any) | undefined; }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>; declare const _default: __VLS_WithSlots; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };