/// 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. * * ```tsx * import { AreaChart } from '@sisense/sdk-ui'; * import { measureFactory } from '@sisense/sdk-data'; * import * as DM from './sample-ecommerce'; * * const CodeExample = () => ( * * ); * * export default CodeExample; * ``` * * * * Stacked area chart variant, broken down by condition: * * ```tsx * * ``` * * * * Stacked percentage area chart variant, using the same data: * * ```tsx * * ``` * * * * @param props - Area chart properties * @returns Area Chart component * @group Charts */ export declare const AreaChart: import("react").FunctionComponent;