import { default as React } from 'react';
import { ChartProps } from '../../types';
/**
 * SankeyChart Component
 *
 * Renders a Sankey diagram visualization from FlowChartData.
 * Shows flow paths with nodes at each layer and links between them.
 */
declare const SankeyChart: React.NamedExoticComponent<ChartProps>;
export default SankeyChart;
