/// import { SankeyChartProps } from '../../../props'; /** * A React component that visualizes flow and volume between nodes using a Sankey diagram. * Node width represents the total flow through that node; link width represents the flow * between two connected nodes. * * @example * ```tsx * import { SankeyChart } from '@sisense/sdk-ui'; * import * as DM from './sample-ecommerce'; * import { measureFactory } from '@sisense/sdk-data'; * * const CodeExample = () => { * return ( * * ); * }; * * export default CodeExample; * ``` * * * @param props - Sankey chart properties * @returns Sankey Chart component * @group Charts */ export declare const SankeyChart: import("react").FunctionComponent;