import { OnDestroy, OnInit } from '@angular/core'; import { AnimationEvent } from '@angular/animations'; import { MessageType } from '../../message-type'; import { LegoBasePopupComponent } from '../lego-base-popup.component'; export declare class ToastComponent extends LegoBasePopupComponent implements OnInit, OnDestroy { title: string; message: string; messageType: MessageType; autoClose: boolean; disposeFn: () => void; animationState: 'default' | 'closing'; showDelay: number; duration: number; hideDelay: number; intervalId: number; readonly toastCssClasses: string; readonly toastIcon: "Status_Success" | "Status_Error" | "Status_Warning" | "Info_Circle"; ngOnInit(): void; onFadeFinished(event: AnimationEvent): void; ngOnDestroy(): void; close(): void; }