import { ActionsObservable, StateObservable } from 'redux-observable'; import { ZeniAPIStatus } from '../../responsePayload'; import { RootState } from '../../rootStateTypes'; import { ZeniAPI } from '../../zeniAPI'; import { refreshOpExByVendorReport, refreshOpExByVendorReportFailure, refreshOpExByVendorReportSuccess } from './opExByVendorReducer'; export type ActionType = ReturnType | ReturnType | ReturnType; export declare const refreshOpExByVendorReportEpic: (actions$: ActionsObservable, _state: StateObservable, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: { lastRefreshSuccessTime: import("../../zeniDayJS").ZeniDate | undefined; }; type: "opExByVendor/refreshOpExByVendorReportSuccess"; } | { payload: { error: ZeniAPIStatus>; }; type: "opExByVendor/refreshOpExByVendorReportFailure"; }>;