import { NzNotificationService } from 'ng-zorro-antd'; export declare class AtxNotificationService { private readonly nzService; constructor(nzService: NzNotificationService); success(title: string, content: string, config?: { duration: number; animate: boolean; placement: string; }): void; error(title: string, content: string, config?: { duration: number; animate: boolean; placement: string; }): void; warning(title: string, content: string, config?: { duration: number; animate: boolean; placement: string; }): void; info(title: string, content: string, config?: { duration: number; animate: boolean; placement: string; }): void; blank(title: string, content: string, config?: { duration: number; animate: boolean; placement: string; }): void; private setConfig(config); }