import { OnInit } from '@angular/core'; import { ConfigService } from '../../services/config/config.service'; import { PlayerService } from '../../services/player/player.service'; import { EditorService } from '../../services/editor/editor.service'; export declare class QumlPlayerComponent implements OnInit { private configService; private playerService; private editorService; qumlPlayerConfig: any; questionSetHierarchy: any; isSingleQuestionPreview: boolean; showPreview: boolean; constructor(configService: ConfigService, playerService: PlayerService, editorService: EditorService); ngOnInit(): void; initialize(): void; setQumlPlayerData(): void; getPlayerEvents(event: any): void; getTelemetryEvents(event: any): void; }