import type { StoreApi } from 'zustand'; import type { CalendarTimeframeStore } from './calendar.types.js'; import type { DateTimePickerValueStore } from './dateTimePicker.types.js'; import type { DateTimeRangePickerTimeframeStore } from './dateTimeRangePicker.types.js'; import type { TimeframeSelectorStore } from './timeframeSelector.types.js'; import { WithChildren } from '../../types/with-children.js'; /** @internal */ export declare const CalendarStoreCtx: import("react").Context | null>; /** @internal */ export declare const DateTimePickerStoreCtx: import("react").Context | null>; /** @internal */ export declare const DateTimeRangePickerStoreCtx: import("react").Context | null>; /** @internal */ export declare const TimeframeSelectorStoreCtx: import("react").Context | null>; /** @internal */ export declare function CalendarStoreProvider({ store, children, }: WithChildren & { store: StoreApi; }): import("react/jsx-runtime").JSX.Element; /** @internal */ export declare function DateTimePickerStoreProvider({ store, children, }: WithChildren & { store: StoreApi; }): import("react/jsx-runtime").JSX.Element; /** @internal */ export declare function DateTimeRangePickerStoreProvider({ store, children, }: WithChildren & { store: StoreApi; }): import("react/jsx-runtime").JSX.Element; /** @internal */ export declare function TimeframeSelectorStoreProvider({ store, children, }: WithChildren & { store: StoreApi; }): import("react/jsx-runtime").JSX.Element;