import type { BacklogHttpResponse } from "../contracts/api/BacklogHttpResponse"; import { BacklogApiBaseError } from "./BacklogApiBaseError"; import type { BacklogApiErrorDetail } from "./BacklogApiErrorDetail"; import type { BacklogApiErrorDetailList } from "./BacklogApiErrorDetailList"; export declare class BacklogApiError extends BacklogApiBaseError { protected readonly error_details: BacklogApiErrorDetailList; constructor(options: { response: BacklogHttpResponse; error_details: BacklogApiErrorDetailList; message?: string; }); getErrors(): BacklogApiErrorDetail[]; firstError(): BacklogApiErrorDetail; toString(): string; }