import { PropType } from 'vue'; import dayjs from 'dayjs'; import type { Dayjs } from 'dayjs'; declare type CellType = 'next' | 'prev' | 'current'; interface Cell { text: number; type: CellType; } export declare const getPrevMonthLastDays: (date: Dayjs, count: number) => number[]; export declare const getMonthDays: (date: Dayjs) => number[]; declare const _default: import("vue").DefineComponent<{ selectedDay: { type: PropType; }; range: { type: PropType; }; date: { type: PropType; required: true; }; hideHeader: { type: BooleanConstructor; default: boolean; }; }, { isInRange: import("vue").ComputedRef; weekDays: import("vue").ComputedRef; rows: import("vue").ComputedRef; getCellClass: ({ text, type }: Cell) => string[]; handlePickDay: ({ text, type }: Cell) => void; getSlotData: ({ text, type }: Cell) => { isSelected: boolean; type: string; day: string; date: Date; }; }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { pick: (value: Dayjs) => boolean; }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{ selectedDay?: unknown; range?: unknown; date?: unknown; hideHeader?: unknown; } & { date: dayjs.Dayjs; hideHeader: boolean; } & { range?: dayjs.Dayjs[] | undefined; selectedDay?: dayjs.Dayjs | undefined; }> & { onPick?: ((value: dayjs.Dayjs) => any) | undefined; }, { hideHeader: boolean; }>; export default _default;