import { HttpException } from './http.exception'; /** * Exception for HTTP 422 Unprocessable Entity errors */ export declare class UnprocessableEntityException extends HttpException { constructor(message?: string); }