import type { DatePickerBaseProps } from "../../common"; import type { DatePickerState } from "./datePickerState"; export type DatePickerContextState = Pick & Pick; /** * Context used to pass DatePicker & DateRangePicker props and state down to custom react-day-picker components * like DatePickerCaption. */ export declare const DatePickerContext: import("react").Context; export declare const DatePickerProvider: (props: React.PropsWithChildren) => import("react/jsx-runtime").JSX.Element;