import { EventEmitter, ElementRef, OnChanges } from '@angular/core'; import { DataItem } from '../models/chart-data.model'; import { Gradient } from '../common/types/gradient.interface'; import { BarOrientation } from '../common/types/bar-orientation.enum'; import * as i0 from "@angular/core"; export declare class TreeMapCellComponent implements OnChanges { data: DataItem; fill: string; x: number; y: number; width: number; height: number; label: string; value: any; valueFormatting: any; labelFormatting: any; gradient: boolean; animations: boolean; select: EventEmitter; gradientStops: Gradient[]; gradientId: string; gradientUrl: string; element: HTMLElement; transform: string; formattedLabel: string; formattedValue: string; initialized: boolean; orientation: typeof BarOrientation; constructor(element: ElementRef); ngOnChanges(): void; update(): void; loadAnimation(): void; getTextColor(): string; animateToCurrentForm(): void; onClick(): void; getGradientStops(): Gradient[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }