import { NotificationSettingsConfig } from "./notification.model";
import { NotificationEventTypes } from "../../utils/enums";
export interface SettingsUpdatedEvent {
    settings: NotificationSettingsConfig;
    isMutedAll: boolean;
}
export type NotificationEventTypesMap = {
    [NotificationEventTypes.SETTINGS_UPDATED]: SettingsUpdatedEvent;
};
