import { ArgumentsHost, ExceptionFilter, HttpException } from '@nestjs/common'; export type RenderErrorFilterOptions = { getErrorPage: (e: Error | HttpException) => string; layout: string | boolean; }; export declare class RenderErrorFilter implements ExceptionFilter { private options; private excludes; constructor(options?: RenderErrorFilterOptions); exclude(excludes: any): this; catch(exception: Error | HttpException, host: ArgumentsHost): any; }