import { ComponentFactoryResolver, ViewContainerRef, ComponentRef } from '@angular/core'; import { TooltipComponent } from './tooltip.component'; export declare class TipDirective { private componentFactoryResolver; private viewContainerRef; tip: string; tipTitle: string; tipLocation: string; tipDelay: number; tipDisabled: string; tipTheme: string; parent: HTMLElement; tooltip: ComponentRef; isShown: boolean; isHover: boolean; timeout: any; constructor(componentFactoryResolver: ComponentFactoryResolver, viewContainerRef: ViewContainerRef); showTip(): void; setProps(): void; hideTip(event: any): void; }