import { HttpStatus } from '@nestjs/common'; declare class EnrichedExceptionError implements Error { readonly name: string; readonly message: string; stack?: string; readonly statusCode: HttpStatus; readonly cause?: unknown; error?: unknown; errors?: unknown[]; service?: string; constructor(error: Omit & Partial>); } export { EnrichedExceptionError };