import dayjs, { type Dayjs } from "dayjs"; type CellClassStatus = ((date: Dayjs) => boolean) | boolean; type ClassAcceptance = Array | Record | string | null | undefined; interface Props { days: { date: Dayjs; isCurrentMonth: boolean; }[][]; dayCellClass?: { status?: { isSelected?: CellClassStatus; isStart?: CellClassStatus; isEnd?: CellClassStatus; isBetween?: CellClassStatus; }; className?: ClassAcceptance | ((date: Dayjs) => ClassAcceptance); } | ((date: Dayjs) => { status?: { isSelected?: boolean; isStart?: boolean; isEnd?: boolean; isBetween?: boolean; }; className?: ClassAcceptance; }); onDayClick: (date: { date: Dayjs; isCurrentMonth: boolean; }) => void; onCellMouseOver?: (date: Dayjs) => void; cellSize?: "md" | "lg"; } export type CalendarProps = Props; declare const _default: import("vue").DefineComponent, { cellSize: string; dayCellClass: undefined; onCellMouseOver: undefined; }>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly, { cellSize: string; dayCellClass: undefined; onCellMouseOver: undefined; }>>> & Readonly<{}>, { dayCellClass: { status?: { isSelected?: CellClassStatus | undefined; isStart?: CellClassStatus | undefined; isEnd?: CellClassStatus | undefined; isBetween?: CellClassStatus | undefined; } | undefined; className?: ClassAcceptance | ((date: dayjs.Dayjs) => ClassAcceptance); } | ((date: dayjs.Dayjs) => { status?: { isSelected?: boolean | undefined; isStart?: boolean | undefined; isEnd?: boolean | undefined; isBetween?: boolean | undefined; } | undefined; className?: ClassAcceptance; }); onCellMouseOver: (date: dayjs.Dayjs) => void; cellSize: "md" | "lg"; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>; export default _default; type __VLS_NonUndefinedable = T extends undefined ? never : T; type __VLS_TypePropsToRuntimeProps = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType<__VLS_NonUndefinedable>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithDefaults = { [K in keyof Pick]: K extends keyof D ? __VLS_Prettify : P[K]; }; type __VLS_Prettify = { [K in keyof T]: T[K]; } & {};