import { default as React } from 'react';
export interface LineChartOverlayProps {
    width: number;
    height: number;
    children: React.ReactNode;
}
export declare const LineChartOverlay: React.ForwardRefExoticComponent<LineChartOverlayProps & React.RefAttributes<SVGRectElement>>;
