import { OnInit, EventEmitter } from "@angular/core"; import { Ng2BalloonMsgService, UsrMsgDetails } from "../services/ng2-balloon-msg.service"; export declare class Ng2BalloonMsgCommonQueueComponent implements OnInit { protected msgService: Ng2BalloonMsgService; private lastShowingModal; private lastShowingPopup; showModalEvent: EventEmitter; showPopupEvent: EventEmitter; protected readonly maxQueueLength = 3; backlog: UsrMsgDetails[]; protected _onScreen: UsrMsgDetails[]; constructor(msgService: Ng2BalloonMsgService); ngOnInit(): void; getShown(): UsrMsgDetails[]; isShowingModal(): boolean; isShowingPopup(): boolean; }