export declare class JwtResponseError extends Error {
    private _message;
    private _detailedMessage;
    private _status?;
    get message(): string;
    get detailedMessage(): string;
    get status(): number;
    get isUnhautorized(): boolean;
    constructor(message: string, detailedMessage: string, status?: number);
}
