export declare type NotificationTypeName = 'default' | 'success' | 'info' | 'warning' | 'error';
export declare enum NotificationType {
    DEFAULT = "default",
    SUCCESS = "success",
    INFO = "info",
    WARNING = "warning",
    ERROR = "error"
}
