import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../rootStateTypes'; import { fetchNetBurnOrIncomeProjectView } from '../netBurnOrIncomeProjectView/netBurnOrIncomeProjectViewReducer'; import { fetchOpExProjectView } from '../opExProjectView/opExProjectViewReducer'; import { fetchProfitAndLossProjectView } from '../profitAndLossProjectView/profitAndLossProjectViewReducer'; import { fetchRevenueProjectView } from '../revenueProjectView/revenueProjectViewReducer'; import { initiateReportsProjectViewRefetching } from './reportsResyncReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const initiateReportsProjectViewRefetchingEpic: (actions$: ActionsObservable, _: StateObservable) => Observable;