/** * useApiClient Hook - Provides access to the authenticated API client * * This hook returns the ApiClient instance from the TagadaProvider context. * The client is guaranteed to have the latest authentication token. */ import type { ApiService } from '../../../react/services/apiService'; /** * Hook to get the authenticated API service from context * * @returns The ApiService instance with the current authentication token * * @example * ```typescript * const apiService = useApiClient(); * const response = await apiService.get('/api/endpoint'); * ``` */ export declare function useApiClient(): ApiService;