import { OnInit } from "@angular/core"; import { Router } from "@angular/router"; import { UsrMsgDetails } from "../services/ng2-balloon-msg.service"; export declare class Ng2BalloonMsgCommonItemComponent implements OnInit { protected router: Router; msgDetails: UsrMsgDetails; shown: boolean; shownStr: string; protected readonly animationDuration = 500; protected readonly showDuration = 2000; protected readonly expireDuration = 3000; protected readonly withRouteDuration = 2000; constructor(router: Router); ngOnInit(): void; msgClicked(): void; openClicked(): void; confirmClicked(): void; cancelClicked(): void; }