import { AfterViewInit, ElementRef, EventEmitter, OnInit } from '@angular/core'; import { DomService } from '../services/dom.service'; import * as i0 from "@angular/core"; export interface ITooltipDimensions { width: number; height: number; top: number; left: number; } export declare class TooltipComponent implements OnInit, AfterViewInit { private domService; viewReady: EventEmitter; tooltip: string; left: number; top: number; color: string | undefined; backgroundColor: string | undefined; container: ElementRef; constructor(domService: DomService); ngOnInit(): void; ngAfterViewInit(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }