/** * @author Megan Castleton * * @copyright Alert Logic, Inc 2019 */ import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; export declare class AlCountSummaryComponent implements OnInit, OnChanges { countSummary: string; themeToggle: boolean; /** * Count to display in widget */ config: string; /** * Event to emit the selected count item */ countSelected: EventEmitter; ngOnChanges(changes: SimpleChanges): void; ngOnInit(): void; onCountSelect(event: any): void; toggleTheme(): void; }