import React from 'react'; import { FormatValue } from "../../../types"; import { HoveredDotValue, HoveredMainValue, Line, ScaleLinear, Threshold } from '../LinearChart'; declare type Props = { lines: readonly Line[]; anchorEl: Element | null; scaleX: ScaleLinear; scaleY: ScaleLinear; hoveredMainValue: HoveredMainValue; hoveredDotValue: HoveredDotValue; threshold?: Threshold; formatValueForLabel: FormatValue; formatValueForTooltip?: FormatValue; formatValueForTooltipTitle?: FormatValue; }; export declare const LineTooltip: React.FC; export {};