import { ActionsObservable, StateObservable } from 'redux-observable'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { notifyMeForFeature, notifyMeForFeatureFailure, notifyMeForFeatureSuccess } from '../featureNotificationViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType; export declare const notifyMeForFeatureEpic: (actions$: ActionsObservable, _state$: StateObservable, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: import("../featureNotificationViewPayload").FeatureInterestDataPayload; type: "featureNotificationView/notifyMeForFeatureSuccess"; } | { payload: { status: import("../../../zeniAPIStatus").ZeniAPIStatus>; }; type: "featureNotificationView/notifyMeForFeatureFailure"; }>;