import { type PropsWithChildren } from 'react'; import type { TimeseriesPerVariant, TimeseriesZoomDomain } from '../types/timeseries.js'; interface StoreProviderProps extends PropsWithChildren { data: TimeseriesPerVariant; currentDomain?: TimeseriesZoomDomain; initialDomain?: TimeseriesZoomDomain; infiniteZoom?: boolean; } export declare const StoreProvider: ({ data, currentDomain, initialDomain, infiniteZoom, children, }: StoreProviderProps) => import("react/jsx-runtime").JSX.Element; export {};