/// <reference types="react" />
import "./index.scss";
export type CustomChartLineProps = {
    contentParams: Record<string, any>;
    onChartLineItemClick: (item: any) => void;
};
declare const ChartLine: (props: CustomChartLineProps) => JSX.Element;
export default ChartLine;
