import { ArgumentsHost, ExceptionFilter } from '@nestjs/common'; import { ValidateException } from '../exceptions/validate.exception'; import { BaseExceptionFilter } from './base-exception.filter'; export declare class ValidatorExceptionFilter extends BaseExceptionFilter implements ExceptionFilter { responseError: (host: ArgumentsHost, code: number, message: string, errors: string | object) => void; constructor(isMicroservice: boolean, responseError: (host: ArgumentsHost, code: number, message: string, errors: string | object) => void); catch(exception: ValidateException, host: ArgumentsHost): void; convertValidationErrors(validatorError: any, language: string): void; getValidationMessage(validatorMessage: any, language: string): string; }