/// 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. * * @beta * * ## Example * * ```tsx * * ``` * * @param props - Sankey chart properties * @returns Sankey Chart component * @group Charts */ export declare const SankeyChart: import("react").FunctionComponent;