import { ToastrService } from 'ngx-toastr'; import { TranslateService } from '@ngx-translate/core'; export declare class NotificationService { private toastrService; private translateService; constructor(toastrService: ToastrService, translateService: TranslateService); showSuccess(message: string, title?: string, timeOutInSeconds?: number): import("ngx-toastr").ActiveToast; showInfo(message: string, title?: string, timeOutInSeconds?: number): import("ngx-toastr").ActiveToast; showWarning(message: string, title?: string, timeOutInSeconds?: number): import("ngx-toastr").ActiveToast; showError(message: string, title?: string, timeOutInSeconds?: number): import("ngx-toastr").ActiveToast; clearAll(): any; clear(toast: any): any; }