import { ExceptionFilter, OnApplicationShutdown, ArgumentsHost } from '@nestjs/common'; import { ModuleRef } from '@nestjs/core'; import { GlobalExceptionFilter } from './global-exception.filter.js'; import '@nestjs/microservices'; import 'rxjs'; import './interfaces/enriched-exception.interface.js'; declare class GlobalSentryExceptionFilter extends GlobalExceptionFilter implements ExceptionFilter, OnApplicationShutdown { private sentry; private initialized; private readonly options?; constructor(moduleRef: ModuleRef); onApplicationShutdown(): Promise; catch(exception: Error, host: ArgumentsHost): void; } export { GlobalSentryExceptionFilter };