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