///
import { AreaChartProps } from '../../../props';
/**
* A React component similar to a {@link @sisense/sdk-ui!LineChart | `LineChart`},
* but with filled in areas under each line and an option to display them as stacked.
*
* ## Example
*
* Area chart displaying total revenue per quarter from the Sample ECommerce data model.
*
*
*
* Additional Area Chart examples:
*
* - [Stacked Area Chart](https://www.sisense.com/developers/playground/?example=charts%2Farea-chart-stacked)
* - [Stacked Percentage Area Chart](https://www.sisense.com/developers/playground/?example=charts%2Farea-chart-stacked100)
*
* @param props - Area chart properties
* @returns Area Chart component
* @group Charts
*/
export declare const AreaChart: import("react").FunctionComponent;