export type NotificationTypeName = 'default' | 'success' |'info' | 'warning' | 'error';

export enum NotificationType {
  DEFAULT = 'default',
  SUCCESS = 'success',
  INFO = 'info',
  WARNING = 'warning',
  ERROR = 'error'
}
