/** * @license * Copyright Alibaba.com All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { ChangeDetectorRef } from '@angular/core'; import { NotificationConfig, NzConfigService } from 'ng-zorro-antd/core/config'; import { NzMNContainerComponent } from 'ng-zorro-antd/message'; import { NzNotificationData } from './typings'; export declare class NzNotificationContainerComponent extends NzMNContainerComponent { bottom: string | null; top: string | null; config: Required; instances: Array>; topLeftInstances: Array>; topRightInstances: Array>; bottomLeftInstances: Array>; bottomRightInstances: Array>; constructor(cdr: ChangeDetectorRef, nzConfigService: NzConfigService); create(notification: NzNotificationData): Required; protected onCreate(instance: NzNotificationData): Required; protected subscribeConfigChange(): void; protected updateConfig(): void; private replaceNotification; protected readyInstances(): void; }