import { Type } from "@angular/core"; import { PopupOptions } from "../popup-options.model"; export interface IPopupItem { type: string; component?: Type; options: PopupOptions; url?: string; title?: string; text?: string; } export declare abstract class PopupItem implements IPopupItem { type: string; component?: Type; options: PopupOptions; url?: string; title?: string; text?: string; constructor(popupItem: IPopupItem); }