import { Component } from 'react'; import { Node } from '../utils'; export declare type Location = 'inside' | 'outside'; export interface SankeyLabelProps { active: boolean; className?: string; chartWidth?: number; fill: string; location: Location; node?: Node; padding?: string | number; visible: boolean; } export declare class SankeyLabel extends Component { static defaultProps: Partial; render(): JSX.Element; }