import { default as React } from 'react';
import { ChartResolution } from '../../types';
import { LineChartData } from '../types';
import * as d3 from 'd3';
export interface LineChartTooltipProps {
    width?: number;
    tooltipWidth?: number;
    height?: number;
    data: LineChartData;
    xScale: d3.ScaleTime<number, number>;
    yScale: d3.ScaleLinear<number, number>;
    anchorEl: SVGRectElement | null;
    noAnimation?: boolean;
    resolution?: ChartResolution;
}
export declare const LineChartTooltip: React.MemoExoticComponent<({ xScale, yScale, width, tooltipWidth, height, data, anchorEl, noAnimation, resolution, ...props }: LineChartTooltipProps) => React.JSX.Element>;
