import React from 'react'; import type { BasePlotProps, Style, Theme } from '../types'; type SankeyDatum = { source: string; target: string; value: number; }; export type SankeyProps = BasePlotProps & Theme & Style & { nodeAlign?: 'left' | 'center' | 'right' | 'justify'; width?: number; height?: number; }; declare const Sankey: (props: SankeyProps) => React.JSX.Element; export default Sankey;