import * as React from 'react'; import type { SankeyLinkIdentifierWithData } from "./sankey.types.js"; import { type SankeyClasses } from "./sankeyClasses.js"; export interface SankeyLinkPlotProps { /** * Classes applied to the various elements. */ classes?: Partial; /** * Callback fired when a sankey item is clicked. * @param {React.MouseEvent} event The event source of the callback. * @param {SankeyLinkIdentifierWithData} link The sankey link identifier. */ onClick?: (event: React.MouseEvent, link: SankeyLinkIdentifierWithData) => void; } declare function SankeyLinkPlot(props: SankeyLinkPlotProps): import("react/jsx-runtime").JSX.Element | null; export { SankeyLinkPlot };