import type { Type } from '@angular/core'; import type { CuiErrorNotificationService } from '../interfaces/error-notification-service'; import type { ShouldHandleErrorPredicate } from '../types'; export interface CuiErrorHandlerProviderConfig { readonly errorNotificationService?: Type; readonly translationPrefix?: string; readonly shouldHandleError?: ShouldHandleErrorPredicate; }