import type { PlotDrawFrame } from "../types"; type TooltipState = { frame: PlotDrawFrame; x: number; points: { seriesId: string; y: number | null; }[]; }; export declare const TooltipsX: React.FC<{ xScaleId: string; data: { seriesId: string; yScaleId: string; points: Array<{ x: number; y: number; }>; }[]; renderTooltip: (params: TooltipState | null) => React.ReactNode; }>; export {}; //# sourceMappingURL=TooltipsX.d.ts.map