import { ErrorFactory } from '../common/errors'; export declare enum NotificationErr { POST_FAILED = "notification/post-notification-failed", FETCH_FAILED = "notification/fetch-failed", NOT_FOUND = "notification/not-found", UPDATE_FAILED = "notification/update-notification-failed", ENABLED_FAILED = "notification/enabled-notification-failed", DISABLED_FAILED = "notification/disabled-notification-failed" } export declare const errors: { "notification/fetch-failed": string; "notification/not-found": string; "notification/update-notification-failed": string; "notification/post-notification-failed": string; "notification/enabled-notification-failed": string; "notification/disabled-notification-failed": string; }; export declare const errorFactory: ErrorFactory;