import apiClient from './axios-instance'; import { get, getList, post, put, patch, del, uploadFile } from './api-utils'; import healthApi, { getSystemHealth, checkHealth, type HealthResponse } from './health'; export { apiClient, get, getList, post, put, patch, del, uploadFile, // Health API exports healthApi, getSystemHealth, checkHealth }; // Re-export the type with 'export type' export type { HealthResponse };