import React from "react"; type Range = [number | undefined, number | undefined]; type ChartContextType = { isZoomed: boolean; isPanning: boolean; hoveredPoint: Highcharts.Point | undefined; resetZoom: () => void; reflow: () => void; redraw: () => void; setChart: React.Dispatch>; setIsZoomed: React.Dispatch>; setIsPanning: React.Dispatch>; setXAxisRange: React.Dispatch>; setHoveredPoint: React.Dispatch>; }; export declare const ChartContext: import("use-context-selector").Context; type ChartContextProviderProps = { children: React.ReactNode; }; export declare const ChartContextProvider: ({ children, }: ChartContextProviderProps) => React.JSX.Element; export {}; //# sourceMappingURL=ChartContext.d.ts.map