import { ElementRef, Injector, OnInit } from '@angular/core'; import { BsModalRef, BsModalService } from 'ngx-bootstrap'; import { Observable } from 'rxjs'; import { ConfigureGalleryServiceProxy } from '../../../../../shared/service-proxies/service-proxies'; import { GraphImportControlSettingResult } from './graph-import-control-setting-result'; import { ConfigureComponentBase } from '../../../../../shared/configure-component-base'; import { SystemGalleryServiceProxy, UserGalleryAppSerivceServiceProxy } from '../../../../../shared/service-proxies/service-proxies'; export declare class GraphImportControlSettingComponent extends ConfigureComponentBase implements OnInit { private readonly systemGalleryService; private readonly galleryService; private readonly userGalleryAppSerivceService; private readonly modalService; private readonly bsModalRef; private readonly elRef; saving: boolean; newGraphStateList: any; graphState: any; oldGraphStateList: any; configureId: number; private _onClosed; readonly onClosed: Observable; constructor(injector: Injector, systemGalleryService: SystemGalleryServiceProxy, galleryService: ConfigureGalleryServiceProxy, userGalleryAppSerivceService: UserGalleryAppSerivceServiceProxy, modalService: BsModalService, bsModalRef: BsModalRef, elRef: ElementRef); ngOnInit(): void; private getCurrentGalleryStates; private getUserGalleryStates; close(modalResult?: GraphImportControlSettingResult): void; renameGraphName(): void; replaceGraph(): void; private coverConfigureGalleryFromSystem; private coverConfigureGalleryFromUserGallery; private converUserGalleryFromCurrentGallery; }