import { NzNotificationService } from 'ng-zorro-antd/notification'; import { NzMessageService } from 'ng-zorro-antd/message'; import { Router } from '@angular/router'; export declare class SnackBarService { private notification; private router; private message; constructor(notification: NzNotificationService, router: Router, message: NzMessageService); success(title: any): void; warning(title: any): void; error(title: any): void; snackBarSetting(title: any, type: any, css: any, duration?: number): void; openReminder(data: any, duration?: number): void; }