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