import React from 'react'; import type { LineChartProps } from './line-chart.props'; /** common -> cartesian -> area -> line */ export type { LineChartProps, LineChartAxisTooltipParams, LineChartTooltipSeriesItem, } from './line-chart.props'; declare function LineChartComponent(props: LineChartProps): React.JSX.Element; export declare const LineChart: typeof LineChartComponent & { displayName: string; }; //# sourceMappingURL=line-chart.d.ts.map