/** * @author Megan Castleton * * @copyright Alert Logic, Inc 2019 */ import { OnInit, ElementRef } from '@angular/core'; export declare class AlHighchartTreeMapComponent implements OnInit { map: any; themeToggle: boolean; treeMap: ElementRef; /** * Input to populate the graph - set to 'any' until backend is defined, allowing us to build * an interface */ config: any; ngOnInit(): void; toggleTheme(): void; toggleDarkTheme(): void; }