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'; import { ToasterService } from '../../services/toaster/toaster.service'; export declare class ResourceReorderComponent implements OnInit { private editorService; configService: ConfigService; telemetryService: EditorTelemetryService; private toasterService; unitSelected: string; selectedContentDetails: any; collectionId: any; collectionUnits: any; programContext: any; prevUnitSelect: any; collectionhierarcyData: any; showMoveButton: boolean; isContentAdded: boolean; modal: any; moveEvent: EventEmitter; collectionUnitsBreadcrumb: any; constructor(editorService: EditorService, configService: ConfigService, telemetryService: EditorTelemetryService, toasterService: ToasterService); ngOnInit(): void; addResource(): void; closePopup(): void; getParentsHelper(tree: any, id: string, parents: Array): { found: boolean; } | { found: boolean; parents: any[]; }; getParents(data: Array, id: string): { found: boolean; } | { found: boolean; parents: any[]; }; setCollectionUnitBreadcrumb(): void; isContentAlreadyPresentInSelectedScetionLevel(children: any): boolean; }