import { HttpException } from "@nestjs/common"; /** * Thrown when a JWT cannot be decoded (malformed structure). * * Returns 401 Unauthorized. */ export declare class TokenMalformedException extends HttpException { constructor(); }