import { ProvidersService } from 'fccore2'; import { FcComponent } from '../fc'; /** * fc-tooltip文字提示 * * 简单的文字提示气泡框。 * * 鼠标移入则显示提示,移出消失,气泡浮层不承载复杂文本和操作。 * * 可用来代替系统默认的 title 提示,提供一个按钮/文字/操作的文案解释。 * */ export declare class FctooltipComponent extends FcComponent { provider: ProvidersService; /**标题*/ fcTitle: string; /**标题位置*/ fcPosition: string; /** 触发方式hover/focus/click*/ fcTrigger: string; /**用于手动控制浮层显隐*/ fcVisible: string; _visible: boolean; constructor(provider: ProvidersService); }