import * as React from 'react';
import type { SankeyLayoutNode } from "./sankey.types.js";
export interface SankeyNodeLabelProps {
  /**
   * The node data
   */
  node: SankeyLayoutNode;
}
/**
 * @ignore - internal component.
 */
export declare const SankeyNodeLabel: React.ForwardRefExoticComponent<SankeyNodeLabelProps & React.RefAttributes<SVGTextElement>>;