import { NotifyComponent } from './notify.component'; import { Overlay } from '@angular/cdk/overlay'; import * as i0 from "@angular/core"; export declare type OptionsType = 'danger' | 'primary' | 'success' | 'warning'; interface NotifyOptions { type?: OptionsType; message: string; duration?: number; color?: string; background?: string; } export declare class NotifyBulderService { private overlay; private overlayRef; private notifyRef; constructor(overlay: Overlay); createNotify(): void; getInstance(options: NotifyOptions): NotifyComponent; create(options: NotifyOptions): NotifyComponent; close(options: NotifyOptions): void; } export declare class NotifyService { private overlay; constructor(overlay: Overlay); create(options: NotifyOptions): NotifyComponent; primary(options: NotifyOptions): NotifyComponent; success(options: NotifyOptions): NotifyComponent; danger(options: NotifyOptions): NotifyComponent; warning(options: NotifyOptions): NotifyComponent; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; } export {};