import { ActionsObservable } from 'redux-observable'; import { updateCreditAgentMacro } from '../../../entity/creditAgent/creditAgentReducer'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchCreditAgentMacro, fetchCreditAgentMacroFailure, fetchCreditAgentMacroSuccess } from '../creditAgentViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchCreditAgentMacroEpic: (actions$: ActionsObservable, _state$: unknown, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: undefined; type: "creditAgentView/fetchCreditAgentMacroSuccess"; } | { payload: import("../../../zeniAPIStatus").ZeniAPIStatus>; type: "creditAgentView/fetchCreditAgentMacroFailure"; } | { payload: import("../creditAgentViewPayload").MacroPayload; type: "creditAgent/updateCreditAgentMacro"; }>;