import { ScaleTime } from 'd3-scale'; import { RelativeAbsolutePosition } from '../../../types/pointer-events.js'; export interface UpdateSelectionStateProps { selection: [RelativeAbsolutePosition, RelativeAbsolutePosition]; chartId: string; scale: ScaleTime; } export interface SynchronizedSelectionContextProps { selectedChartId?: string; startX?: number; endX?: number; updateSelectionState?: (props?: UpdateSelectionStateProps) => void; resetSelectionState?: () => void; disabled?: boolean; } export declare const SynchronizedSelectionContext: import("react").Context;