import { ApplicationRef, EnvironmentInjector, OnInit } from '@angular/core'; import * as i0 from "@angular/core"; export type NotificationType = 'success' | 'error' | 'info' | 'warning'; export type NotificationPosition = 'top-right' | 'top-left' | 'top-center' | 'bottom-right' | 'bottom-left' | 'bottom-center'; export interface NotificationOptions { message: string; type?: NotificationType; title?: string; duration?: number; closable?: boolean; position?: NotificationPosition; } export interface NotificationItem extends Required { id: number; visible: boolean; } export declare class NotificationContainerComponent implements OnInit { items: import("@angular/core").WritableSignal; icons: Record; ngOnInit(): void; add(opts: NotificationOptions): number; remove(id: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } export declare class NotificationService { private appRef; private injector; private containers; constructor(appRef: ApplicationRef, injector: EnvironmentInjector); private getContainer; show(opts: NotificationOptions): number; success(message: string, title?: string, opts?: Partial): number; error(message: string, title?: string, opts?: Partial): number; info(message: string, title?: string, opts?: Partial): number; warning(message: string, title?: string, opts?: Partial): number; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }