import { Type } from '@angular/core'; import { Observable } from 'rxjs'; import { IPopupItem } from './items/popup-item'; import { PopupOptions } from './popup-options.model'; export declare class PopupService { private popupSource; popupSource$: Observable; private iframeLoadSource; iframeLoadSource$: Observable; constructor(); openHtml(component: Type, options?: PopupOptions): void; openConfirm(title: string, text: string, options?: PopupOptions): void; openIframe(url: string, options?: PopupOptions): void; dispatchLoadEvent(): void; close(): void; }