import type { HttpClientError, HttpClientResponse } from './http-client'; /** * Extracts a standardized error response from an HttpClientError. * Maintains backwards compatibility with the axios error structure. * * @param error - The HTTP client error * @returns The response object if available, or a message-only object for network errors */ declare const getHttpError: (error: HttpClientError) => HttpClientResponse | { message: string; }; export default getHttpError;