import BaseException from "../base.exception"; import BadRequestException from "../exceptions/bad-request.exception"; import UnprocessableEntityException from "../exceptions/unprocessable-entity.exception"; import InvalidPasswordException from "../exceptions/invalid-password.exception"; import ItemNotFoundException from "../exceptions/item-not-found.exception"; import NoItemsFoundException from "../exceptions/no-items-found.exception"; import NoContentException from "../exceptions/no-content.exception"; import UnauthorizedException from "../exceptions/unauthorized-error.exception"; import ValueAlreadyExistsException from "../exceptions/value-already-exists.exception"; import JsmException from "../exceptions/jsm-exception.exception"; import InternalServerErrorException from "../exceptions/internal-server-error.exception"; import ValidationException from "../exceptions/validation.exception"; import JWTTokenExpiredException from "../exceptions/jwt-token-expired.exception"; import ForbiddenException from "../exceptions/forbidden.exception"; import MethodNotAllowedException from "../exceptions/method-not-allowed.exception"; import RequestTimeoutException from "../exceptions/request-timeout.exception"; import TooManyRequestsException from "../exceptions/too-many-requests.exception"; import NotImplementedException from "../exceptions/not-implemented.exception"; import ServiceUnavailableException from "../exceptions/service-unavailable.exception"; export declare function isJsmException(error: any): error is BaseException; export declare function isJsmBadRequestException(error: any): error is BadRequestException; export declare function isJsmUnprocessableEntityException(error: any): error is UnprocessableEntityException; export declare function isJsmInvalidPasswordException(error: any): error is InvalidPasswordException; export declare function isJsmItemNotFoundException(error: any): error is ItemNotFoundException; export declare function isJsmNoItemsFoundException(error: any): error is NoItemsFoundException; export declare function isJsmNoContentException(error: any): error is NoContentException; export declare function isJsmUnauthorizedException(error: any): error is UnauthorizedException; export declare function isJsmValueAlreadyExistsException(error: any): error is ValueAlreadyExistsException; export declare function isJsmInternalServerErrorException(error: any): error is InternalServerErrorException; export declare function isJsmValidationException(error: any): error is ValidationException; export declare function isJsmJWTTokenExpiredException(error: any): error is JWTTokenExpiredException; export declare function isJsmForbiddenException(error: any): error is ForbiddenException; export declare function isJsmMethodNotAllowedException(error: any): error is MethodNotAllowedException; export declare function isJsmRequestTimeoutException(error: any): error is RequestTimeoutException; export declare function isJsmTooManyRequestsException(error: any): error is TooManyRequestsException; export declare function isJsmNotImplementedException(error: any): error is NotImplementedException; export declare function isJsmServiceUnavailableException(error: any): error is ServiceUnavailableException; export declare function isJsmApiError(error: any): error is JsmException;