import { ArgumentsHost, ExceptionFilter } from '@nestjs/common'; export type GlobalExceptionFilterOptions = { includePath?: boolean; }; export declare class GlobalExceptionFilter implements ExceptionFilter { private readonly logger; private readonly includePath; constructor(options?: GlobalExceptionFilterOptions); catch(exception: any, host: ArgumentsHost): void; }