declare enum NotificationLevel {
    Success = "success",
    Info = "info",
    Warning = "warn",
    Error = "error"
}
export default NotificationLevel;
