/// import { StreamgraphChartProps } from '../../../props'; /** * A React component that displays a streamgraph chart. * * A streamgraph is a type of stacked area chart where areas are displaced around * a central axis. It is particularly effective for displaying volume across * different categories or over time with a relative scale that emphasizes * overall patterns and trends. * ## Example * * Streamgraph displaying revenue by category over time. * * ```tsx * import { StreamgraphChart } from '@sisense/sdk-ui'; * import { measureFactory } from '@sisense/sdk-data'; * import * as DM from './sample-ecommerce'; * * function RevenueByCategoryStreamgraph() { * return ( * * ); * } * ``` * * @param props - Streamgraph chart properties * @returns Streamgraph Chart component * @group Charts */ export declare const StreamgraphChart: import("react").FunctionComponent;