import { ComponentFactoryResolver } from '@angular/core'; import { RebirthNGConfig } from '../rebirth-ng.config'; import { NotifyModel } from './notify.model'; export declare class NotifyService { private rebirthNGConfig; private componentFactoryResolver; private panelRef; private _placement; constructor(rebirthNGConfig: RebirthNGConfig, componentFactoryResolver: ComponentFactoryResolver); placement(placement: 'top' | 'top-right' | 'bottom' | 'bottom-right' | 'center'): void; open(notify: NotifyModel, duration?: number): void; close(alertModel: NotifyModel): void; closeAll(): void; }