import { ODataClientError } from "@odata2ts/http-client-api"; import type { AxiosError } from "axios"; export declare class AxiosClientError extends Error implements ODataClientError { readonly status?: number | undefined; readonly headers?: Record | undefined; readonly cause?: Error | undefined; readonly axiosError?: AxiosError | undefined; constructor(msg: string, status?: number | undefined, headers?: Record | undefined, cause?: Error | undefined, axiosError?: AxiosError | undefined); }