import React from 'react'; interface IProps { tip: string; pathRef: React.RefObject; svgRef: React.RefObject; minWidth?: number; fontSize?: number; fontFamily?: string; bgColor?: string; textColor?: string; rtl?: boolean; } export declare const PathTooltip: React.FC; export {};