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