import dayjs from 'dayjs'; import React, { PropsWithChildren } from 'react'; import { CalendarProps, CommonCalendarProps } from '../type'; export interface CalendarContextProps extends Pick { now: dayjs.Dayjs; selectedDate: dayjs.Dayjs; onSelectDate: (date: dayjs.Dayjs, changeDate?: boolean) => void; } declare const _default: React.MemoExoticComponent<{ ({ children, onChange, selected, onSelected, defaultSelected, locale, ...rest }: PropsWithChildren): import("react/jsx-runtime").JSX.Element; displayName: string; }>; export default _default; export declare function useCalendarContext(): CalendarContextProps; //# sourceMappingURL=calendar.d.ts.map