///
import { AreaRangeChartProps } from '../../../props';
/**
* A React component that displays a range of data over a given time period or across multiple categories.
* It is particularly useful for visualizing the minimum and maximum values in a dataset, along with the area between these values.
*
* @example
* Area range chart displaying total revenue per quarter from the Sample ECommerce data model,
* with the range spanning 60%-140% of the actual revenue.
*
* ```tsx
* import { AreaRangeChart } from '@sisense/sdk-ui';
* import { measureFactory } from '@sisense/sdk-data';
* import * as DM from './sample-ecommerce';
*
* const CodeExample = () => (
*
* );
*
* export default CodeExample;
* ```
*
*
*
* The same range broken down by condition:
*
* ```tsx
*
* ```
*
*
* @param props - Area Range chart properties
* @returns Area Range Chart component
* @group Charts
*/
export declare const AreaRangeChart: import("react").FunctionComponent;