import * as React from 'react'; import type { SankeyNodeIdentifierWithData } from "./sankey.types.js"; import { type SankeyClasses } from "./sankeyClasses.js"; export interface SankeyNodePlotProps { /** * 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 {SankeyNodeIdentifierWithData} node The sankey node identifier. */ onClick?: (event: React.MouseEvent, node: SankeyNodeIdentifierWithData) => void; } declare function SankeyNodePlot(props: SankeyNodePlotProps): import("react/jsx-runtime").JSX.Element | null; export { SankeyNodePlot };