import { OnInit, OnDestroy, EventEmitter } from '@angular/core'; import { EditorTelemetryService } from '../../services/telemetry/telemetry.service'; import { ConfigService } from '../../services/config/config.service'; export declare class TemplateComponent implements OnInit, OnDestroy { telemetryService: EditorTelemetryService; configService: ConfigService; templateList: any; private modal; templateSelection: EventEmitter; showButton: boolean; templateSelected: any; constructor(telemetryService: EditorTelemetryService, configService: ConfigService); ngOnInit(): void; next(): void; onClosePopup(): void; ngOnDestroy(): void; }