/** * Handles errors from API calls, providing standardized error handling across services * @param error The error object from the API call * @param context Optional context description for logging * @returns A standardized error object */ export declare function handleApiError(error: unknown, context?: string): Error;