import { AfterViewInit, ChangeDetectorRef, ElementRef, TemplateRef } from '@angular/core'; import { TooltipOptions } from './tooltip-options.class'; export declare class TooltipContainerComponent implements AfterViewInit { classMap: any; top: string; left: string; display: string; content: string; htmlContent: string | TemplateRef; protected placement: string; protected popupClass: string; protected animation: boolean; protected isOpen: boolean; protected appendToBody: boolean; protected hostEl: ElementRef; protected context: any; protected element: ElementRef; protected cdr: ChangeDetectorRef; constructor(element: ElementRef, cdr: ChangeDetectorRef, options: TooltipOptions); ngAfterViewInit(): void; readonly isTemplate: boolean; }