/// <reference types="react" />
import BaseChartProps from "../common/BaseChartProps";
import { CurveType } from "../types/charts";
export interface LineChartProps extends BaseChartProps {
    connectNulls?: boolean;
    curveType?: CurveType;
}
declare const LineChart: import("react").ForwardRefExoticComponent<LineChartProps & import("react").RefAttributes<HTMLDivElement>>;
export default LineChart;
