import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../rootStateTypes'; import { ZeniAPI } from '../../zeniAPI'; import { fetchRecommendationByEntityName, indicateReadyToInitializeRecommendation, updateRecommendationForEntity, updateRecommendationForEntityFailure } from './recommendationReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchRecommendationByEntityNameEpic: (actions$: ActionsObservable, _state$: StateObservable, zeniAPI: ZeniAPI) => Observable;