import { ContextualPopupService } from '../contextual-popup'; import { ITooltip, TooltipClickEventHandlers, TooltipHoverEventHandlers, TooltipOptions, TooltipRenderer } from './tooltip.doc'; export declare class Tooltip implements ITooltip { private contextualPopupService; private renderer; private options; constructor(contextualPopupService: ContextualPopupService, renderer: TooltipRenderer, options?: TooltipOptions); readonly hover: TooltipHoverEventHandlers; readonly click: TooltipClickEventHandlers; private readonly popupOptions; }