import React from 'react';
import './index.scss';
export interface WidgetsTooltipProps {
    /** tooltip中的内容 */
    content: string | React.ReactNode;
    /** 位置偏移量 */
    offset?: {
        x?: number;
        y?: number;
    };
    /** 位置，默认下方，当靠近页面边缘时会自适应*/
    position?: 'top' | 'bottom';
}
/** 监听文字，过长省略时显示tooltip */
declare const WidgetsTooltip: import("react").ForwardRefExoticComponent<WidgetsTooltipProps & import("react").RefAttributes<HTMLDivElement>>;
export default WidgetsTooltip;
