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