import { Health } from '../../core/types/Api';
import { QueryReturn } from '../types';
/**
 * React hook to fetch API health status.
 *
 * @returns {QueryReturn<Health>} Object with { data: Health, loading: boolean, error: Error | null }
 */
export declare const useApiHealth: () => QueryReturn<Health>;
