import type { ForwardRefExoticComponent, PropsWithoutRef, RefAttributes } from 'react'; import type { SankeyOptions } from '../../core'; import type { Chart, CommonConfig } from '../../interface'; export type SankeyConfig = CommonConfig; declare const SankeyChart: ForwardRefExoticComponent & RefAttributes>; export default SankeyChart;