export declare class TooltipManager { private readonly element; private timer; private paused; static readonly DELAY = 300; constructor(element: HTMLElement); private setupEventListeners; pause(): void; resume(): void; closeAll(): void; /** * It displays the tooltip for the given target. * @param target */ private displayTarget; }