import { ToastrService } from 'ngx-toastr'; import * as i0 from "@angular/core"; export declare enum CdNotifType { SUCCESS = "success", ERROR = "error", INFO = "info", WARNING = "warning" } export declare class CdNotifyService { private toastr; constructor(toastr: ToastrService); /** * Show a notification * @param message The message to display * @param type The type of notification (SUCCESS, ERROR, INFO, WARNING) * @param context Optional context for logging/debugging */ notify(message: string, type: CdNotifType, context?: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }