import { OnDestroy, OnInit } from '@angular/core'; import { IcsToast } from './types/ics-toast'; import { IcsToastService } from './ics-toast.service'; import { Subscription } from 'rxjs'; import { Router } from '@angular/router'; export declare class IcsToastComponent implements OnInit, OnDestroy { private toastService; private router; readonly TIMEOUT: number; toasts: IcsToast[]; subscription: Subscription; constructor(toastService: IcsToastService, router: Router); ngOnInit(): void; textStyle(toast: IcsToast): any; private popToast(); removeToast(index: number): void; ngOnDestroy(): void; }