interface IAxiosError extends Error { config: unknown; code?: string; request?: any; response?: { data: T; status: number; statusText: string; headers: any; config: unknown; request?: any; }; isAxiosError: boolean; } export declare const formatterAxiosError: (error: IAxiosError) => IAxiosError | { stack: string; message: string; response: { status: number; headers: any; data: any; }; config: unknown; code?: string; isAxiosError: boolean; name: string; }; export {};