import { BehaviorSubject, Subject } from "rxjs"; import * as i0 from "@angular/core"; export interface IImage { path: string; title: string; id: number; } export declare class ViewerService { imagesSubject$: BehaviorSubject>; imagesArray: Array; showViewer: boolean; showViewerChange: Subject; id: number; get images(): import("rxjs").Observable; constructor(); addImage(path?: any, title?: any): number; updateImagePath(id: any, path: any): void; clear(): void; setViewerVisability(value: any, id?: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }