import type { BacklogHttpResponse } from "../contracts/api/BacklogHttpResponse"; import { BacklogApiAuthenticationError } from "./BacklogApiAuthenticationError"; import type { BacklogApiErrorDetailList } from "./BacklogApiErrorDetailList"; export declare class BacklogApiAuthenticationInvalidTokenError extends BacklogApiAuthenticationError { constructor(options: { response: BacklogHttpResponse; error_details: BacklogApiErrorDetailList; }); }