import { AxiosError, AxiosConfig, AxiosResponse } from '../types/index'; export declare class AxiosErrorcs extends Error implements AxiosError { isAxiosError: boolean; config: AxiosConfig; code?: string | null | undefined; request?: any; response?: AxiosResponse | undefined; name: string; message: string; constructor(isAxiosError: boolean, config: AxiosConfig, name?: string, message?: string, code?: string | null | undefined, request?: any, response?: AxiosResponse | undefined, stack?: string | undefined); } export declare function createAxiosErrorcs(isAxiosError: boolean, config: AxiosConfig, name?: string, message?: string, code?: string | null | undefined, request?: any, response?: AxiosResponse | undefined, stack?: string | undefined): AxiosErrorcs;