import { OnInit, EventEmitter } from '@angular/core'; import { ConfigService } from '../../services/config/config.service'; import { EditorService } from '../../services/editor/editor.service'; import { EditorTelemetryService } from '../../services/telemetry/telemetry.service'; export declare class LibraryListComponent implements OnInit { editorService: EditorService; telemetryService: EditorTelemetryService; configService: ConfigService; contentList: any; showAddedContent: any; contentChangeEvent: EventEmitter; moveEvent: EventEmitter; selectedContent: any; sortContent: boolean; constructor(editorService: EditorService, telemetryService: EditorTelemetryService, configService: ConfigService); ngOnInit(): void; onContentChange(selectedContent: any): void; changeFilter(): void; onShowAddedContentChange(): void; sortContentList(): void; addToLibrary(): void; }