import { RecommendationResult } from '@cloud-carbon-footprint/common'; import { ServiceResult } from '../../Types'; import { FootprintData } from './FootprintDataHook'; export interface UseRemoteRecommendationServiceParams { baseUrl: string | null; onApiError?: (e: Error) => void; awsRecommendationTarget?: string; minLoadTimeMs?: number; footprint?: FootprintData; } declare const useRemoteRecommendationsService: (params: UseRemoteRecommendationServiceParams) => ServiceResult; export default useRemoteRecommendationsService;