import { OnInit } from '@angular/core'; import { Subject } from 'rxjs'; export declare class ImageDisplayModalComponent implements OnInit { /** * Array of image sources to display */ srcs: { src: string; description: string; }[]; /** * Object to update the parent's title dynamically */ title: Subject; currImage: number; constructor(); ngOnInit(): void; next(): void; prev(): void; setTitle(): void; }