import dayjs from 'dayjs'; import React, { PropsWithChildren } from 'react'; export interface CalendarMonthContextProps { currentMonth: dayjs.Dayjs; inInternalYear: dayjs.Dayjs; onSetInternalYear: (value: dayjs.Dayjs) => void; onPrevMonth: () => void; onNextMonth: () => void; onApplyDate: () => void; openYearList: boolean; onToggleYearList: (year?: number) => void; } declare const _default: React.MemoExoticComponent<{ ({ children }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }>; export default _default; export declare function useCalendarMonthContext(): CalendarMonthContextProps; //# sourceMappingURL=CalendarMonth.d.ts.map