import { HttpException } from "../../exceptions";
import { BaseExceptionFilter } from './base-exception-filter';
import { ArgumentsHostInterface, ExceptionFilterMetadataInterface } from "../../contracts";
export declare class ExceptionsHandler extends BaseExceptionFilter {
    private filters;
    next(exception: Error | HttpException | any, ctx: ArgumentsHostInterface): void;
    setCustomFilters(filters: ExceptionFilterMetadataInterface[]): void;
    invokeCustomFilters<T = any>(exception: T, ctx: ArgumentsHostInterface): boolean;
}
//# sourceMappingURL=exceptions-handler.d.ts.map