import { OnDestroy, OnInit } from '@angular/core'; import { Location } from '@angular/common'; import { ActivatedRoute, Router } from "@angular/router"; import { ShareService } from "../share.service"; import { ChartShareDeleteComponent } from "../chart-share-delete/chart-share-delete.component"; import { ConfirmDialogComponent } from "inet-ui"; import { ShareToMe } from "../model/share-model"; import { TranslateService } from "@ngx-translate/core"; import { NotificationService } from "inet-core"; import * as i0 from "@angular/core"; export declare class SharedCenterComponent implements OnInit, OnDestroy { private location; private route; private shareService; private router; private translate; private notification; chartDelete: ChartShareDeleteComponent; confirmDialog: ConfirmDialogComponent; uuid: string; chart: any; isOpenRightBar: boolean; actionCurrent: string; action: typeof ShareAction; isMyShare: boolean; cls: string; messageEdit: string; titleEdit: string; urlJS: string; urlIframe: string; constructor(location: Location, route: ActivatedRoute, shareService: ShareService, router: Router, translate: TranslateService, notification: NotificationService); ngOnInit(): void; loadChart(): void; onBack(): void; onOpenRightBar(isOpen: boolean): void; deleteChart(): void; onDeleteSuccess(): void; confirmChange(): void; showDialogChange(dataContext: ShareToMe): void; onCopyPath(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare enum ShareAction { VIEW = "VIEW" }