import { ChangeDetectorRef } from '@angular/core'; import { SimToastRef } from './toast-ref'; import { ToastData } from './toast.typings'; export interface TextOnlyToast { data: ToastData; simToastRef: SimToastRef; } export declare class SimToastComponent implements TextOnlyToast { simToastRef: SimToastRef; private cdr; icon: string; state: 'enter' | 'leave'; data: ToastData; private _messageIcon; private _duration; private _toastConfig; constructor(simToastRef: SimToastRef, data: ToastData, cdr: ChangeDetectorRef); onMouseEnter(): void; onMouseLeave(): void; }