/// 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>; export default LineChart;