import { AfterViewInit, ElementRef, NgZone, OnChanges, OnDestroy, OnInit, SimpleChanges } from '@angular/core'; import { BoxDef } from '../../../../bd2-heatmap.dom'; import { ScaleLinear, ScaleQuantize } from 'd3-scale'; import { TooltipService } from '../../../tooltip/tooltip.service'; import * as i0 from "@angular/core"; export declare class DataPointBoxComponent implements OnInit, OnDestroy, OnChanges, AfterViewInit { private tooltip; private zone; boxNode: ElementRef; prevBoxNode: ElementRef; point: BoxDef; yPosition: number; yHeight: number; xScale: ScaleLinear; colorScale: ScaleQuantize; label: string; xPosition: number; xWidth: number; constructor(tooltip: TooltipService, zone: NgZone); ngOnChanges(changes: SimpleChanges): void; ngAfterViewInit(): void; ngOnInit(): void; ngOnDestroy(): void; addMouseListeners(elm: ElementRef): void; removeMouseListeners(elm: ElementRef): void; hideTooltip($event: any): void; showTooltip($event: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }