Repository URL to install this package:
import { CounterInfoEditDialogComponent } from './dialogs/counter-info-edit-dialog-component/counter-info-edit-dialog-component';
import { WCNotificationCenter } from 'web-console-ui-kit';
import { OnInit } from '@angular/core';
import { NGXLogger } from 'web-console-core';
import { ServiceCatalogSelectorDialogComponent, SelectionEvent } from '../../../components/UI/selectors/service-catalog-selector/service-catalog-selector-dialog';
import { SelectionEvent as CounterInfoSelectionEvent } from './counter-infos/counter-infos-component';
import { ThresholdEditDialogComponent } from './dialogs/threshold-edit-dialog-component/threshold-edit-dialog-component';
export declare class CountersAndThresholdsSectionComponent implements OnInit {
private logger;
private notificationCenter;
counterInfoDialog: CounterInfoEditDialogComponent;
thresholdDialog: ThresholdEditDialogComponent;
selectedCounterInfo: string;
constructor(logger: NGXLogger, notificationCenter: WCNotificationCenter);
_entitySelector: ServiceCatalogSelectorDialogComponent;
/**
* Angular ngOnInit
*/
ngOnInit(): void;
ontestClick(): void;
ontest2Click(): void;
onEntrySelected(selectionEvent: SelectionEvent): void;
onCounterInfoSelectionChange(selectionEvent: CounterInfoSelectionEvent): void;
}