import { ElementRef, Injector, OnInit } from '@angular/core'; import { ConfigureGalleryServiceProxy, SystemGalleryServiceProxy, UserGalleryAppSerivceServiceProxy } from '../../../../../shared/service-proxies/service-proxies'; import { BsModalRef } from 'ngx-bootstrap'; import { Observable } from 'rxjs'; import { RenameGraphSettingResult } from './rename-graph-setting-result'; import { ConfigureComponentBase } from '../../../../../shared/configure-component-base'; export declare class RenameGraphSettingModalComponent extends ConfigureComponentBase implements OnInit { private readonly systemGalleryService; private readonly userGalleryAppSerivceService; private readonly galleryService; private readonly bsModalRef; private readonly elRef; saving: boolean; namerequired: boolean; renameGraphSetting: any; renameGraphName: string; configureId: number; graphState: any; private _onClosed; readonly onClosed: Observable; constructor(injector: Injector, systemGalleryService: SystemGalleryServiceProxy, userGalleryAppSerivceService: UserGalleryAppSerivceServiceProxy, galleryService: ConfigureGalleryServiceProxy, bsModalRef: BsModalRef, elRef: ElementRef); ngOnInit(): void; save(): void; private sysNameSave; private userNameSave; private currentNameSave; valueChange(): void; close(modalResult?: RenameGraphSettingResult): void; }