import { OnInit, AfterViewInit, AfterContentInit, OnDestroy, ElementRef, EventEmitter, QueryList, TemplateRef } from '@angular/core'; import { Message } from '../common/message'; import { MessageService } from '../common/messageservice'; import { Subscription } from 'rxjs'; import { AnimationEvent } from '@angular/animations'; export declare class ToastItem implements AfterViewInit, OnDestroy { message: Message; index: number; template: TemplateRef; showTransitionOptions: string; hideTransitionOptions: string; onClose: EventEmitter; containerViewChild: ElementRef; timeout: any; ngAfterViewInit(): void; initTimeout(): void; clearTimeout(): void; onMouseEnter(): void; onMouseLeave(): void; onCloseIconClick(event: any): void; ngOnDestroy(): void; } export declare class Toast implements OnInit, AfterContentInit, OnDestroy { messageService: MessageService; key: string; autoZIndex: boolean; baseZIndex: number; style: any; styleClass: string; position: string; modal: boolean; showTransitionOptions: string; hideTransitionOptions: string; onClose: EventEmitter; containerViewChild: ElementRef; templates: QueryList; messageSubscription: Subscription; clearSubscription: Subscription; messages: Message[]; template: TemplateRef; mask: HTMLDivElement; constructor(messageService: MessageService); ngOnInit(): void; ngAfterContentInit(): void; onMessageClose(event: any): void; enableModality(): void; disableModality(): void; onAnimationStart(event: AnimationEvent): void; ngOnDestroy(): void; } export declare class ToastModule { }