/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ /** * Check if error is an AxiosError * @param error - The error to check * @returns true if it's an AxiosError, false otherwise */ export declare function isAxiosError(error: any): boolean; /** * Handle errors from API calls * @param error - The error to handle * @returns A formatted Error object */ export declare function handleError(error: any): Error;