/// 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. * * ```tsx * import { LineChart } from '@sisense/sdk-ui'; * import { measureFactory } from '@sisense/sdk-data'; * import * as DM from './sample-ecommerce'; * * const CodeExample = () => ( * * ); * * export default CodeExample; * ``` * * * * Curved (spline) line chart variant, using the same data: * * ```tsx * * ``` * * * * Styled line chart variant with custom axes, legend, and markers: * * ```tsx * * ``` * * * * Step line chart variant, using the same data: * * ```tsx * * ``` * * * * @param props - Line chart properties * @returns Line Chart component * @group Charts */ export declare const LineChart: import("react").FunctionComponent;