import { Ref } from 'react'; import { Sankey, SankeyConfigInterface, SankeyInputNode, SankeyInputLink } from '@unovis/ts'; export declare type VisSankeyRef = { component?: Sankey; }; export declare type VisSankeyProps = SankeyConfigInterface & { data?: { nodes: N[]; links?: L[]; }; ref?: Ref>; }; export declare const VisSankeySelectors: typeof import("@unovis/ts/dist/components/sankey/style"); export declare const VisSankey: ((props: VisSankeyProps) => JSX.Element | null);