import { NotificationType } from "../../../notifications/Notifications"; export declare const QualityManagementNotification: { QuestionCreated: { id: string; type: NotificationType; content: string; }; QuestionUpdated: { id: string; type: NotificationType; content: string; }; QuestionFailed: { id: string; type: NotificationType; content: string; }; CategoryCreated: { id: string; type: NotificationType; content: string; }; CategoryUpdated: { id: string; type: NotificationType; content: string; }; CategoryFailed: { id: string; type: NotificationType; content: string; }; QuestionnaireCreated: { id: string; type: NotificationType; content: string; }; QuestionnaireUpdated: { id: string; type: NotificationType; content: string; }; QuestionnaireFailed: { id: string; type: NotificationType; content: string; }; QuestionnaireStatusChanged: { id: string; type: NotificationType; content: string; }; QuestionnaireDuplicationFailed: { id: string; type: NotificationType; content: string; }; }; export declare const registerNotifications: () => void; export declare const notifyQuestionUpdated: () => void; export declare const notifyQuestionCreated: () => void; export declare const notifyQuestionFailed: () => void; export declare const notifyCategoryUpdated: () => void; export declare const notifyCategoryCreated: () => void; export declare const notifyCategoryFailed: () => void; export declare const notifyQuestionnaireUpdated: () => void; export declare const notifyQuestionnaireCreated: () => void; export declare const notifyQuestionnaireFailed: () => void; export declare const notifyQuestionnaireStatusChanged: () => void; export declare const notifyQuestionnaireDuplicationFailed: () => void;