/** * Error thrown when an HTTP request fails. * Provides access to the status code, response, and parsed error body. */ export declare class HttpError extends Error { readonly status: number; readonly statusText: string; readonly response?: Response | undefined; readonly body?: unknown | undefined; constructor(status: number, statusText: string, response?: Response | undefined, body?: unknown | undefined); } //# sourceMappingURL=errors.d.ts.map