///
import { LineChartProps } from '../../../props';
/**
* A React component displaying data as a series of points connected by a line. Used to show trends or changes over time.
*
* ## Example
*
* Line chart displaying total revenue per quarter from the Sample ECommerce data model.
*
*
*
* Additional Line Chart examples:
*
* - [Curved Line Chart](https://www.sisense.com/developers/playground/?example=charts%2Fline-chart-spline)
* - [Styled Line Chart](https://www.sisense.com/developers/playground/?example=charts%2Fline-chart-styled)
*
* @param props - Line chart properties
* @returns Line Chart component
* @group Charts
*/
export declare const LineChart: import("react").FunctionComponent;