import { type Dispatch, type SetStateAction } from 'react'; export interface SynchronizedCrosshairContextProps { hoveredChartId?: string; hoveredTimestamp?: number; updateHoverState: (chartId?: string, timestamp?: number) => void; disabled: boolean; setDisabled: Dispatch>; } export declare const SynchronizedCrosshairContext: import("react").Context;