import type { CommonHttpClientFetchRequest, CommonHttpClientFetchResponse, CommonHttpClientOptions } from "api-typescript-generator/openapi-client"; /** * API Error for all API-Client libraries. * * Stored in common package in order to have the same class pointer for all the packages. */ export declare class ApiError extends Error { readonly url: URL; readonly request: CommonHttpClientFetchRequest | undefined; readonly response: CommonHttpClientFetchResponse | undefined; readonly options: CommonHttpClientOptions | undefined; constructor(url: URL, request: CommonHttpClientFetchRequest | undefined, response: CommonHttpClientFetchResponse | undefined, options: CommonHttpClientOptions | undefined, message: string); }