import { Injector } from '@angular/core'; import { BsModalService } from 'ngx-bootstrap'; import { ConfigureGalleryServiceProxy } from '../../../../shared/service-proxies/service-proxies'; import { AbpSessionService } from 'abp-ng2-module/src/session/abp-session.service'; import { ConfigureComponentBase } from '../../../../shared/configure-component-base'; export declare class GalleryCurrentComponent extends ConfigureComponentBase { private abpSessionService; private readonly galleryService; private readonly modalService; configureId: number; graphList: Array; currentGraphStateList: Array; selectedGraph: any; currentGraphStateId: any; constructor(injector: Injector, abpSessionService: AbpSessionService, galleryService: ConfigureGalleryServiceProxy, modalService: BsModalService); loadGalleryConfig(graphName?: string): void; selectGraph(graph: any, forceSelect?: boolean): void; onCreateOrEditGraph(id?: number): void; onAddToUserGallery(): void; }