import { ActionsObservable, StateObservable } from 'redux-observable'; import { RootState } from '../../rootStateTypes'; import { netBurnOrIncomeToggleForecastMode } from '../netBurnOrIncome/netBurnOrIncomeReducer'; import { updateAccountViewMode as updateNetBurnOrIncomeAccountViewMode } from '../netBurnOrIncomeClassesView/netBurnOrIncomeClassesViewReducer'; import { opExToggleForecastMode } from '../opEx/opExReducer'; import { updateAccountViewMode as updateOpExAccountViewMode } from '../opExClassesView/opExClassesViewReducer'; import { revenueToggleForecastMode } from '../revenue/revenueReducer'; import { updateAccountViewMode as updateRevenueAccountViewMode } from '../revenueClassesView/revenueClassesViewReducer'; import { toggleReportUIOptionForecastMode, updateReportUIOptionCompareMode, updateReportUIOptionIsCompareModeOn } from './reportUIOptionsReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const toggleReportUIOptionForecastModeEpic: (actions$: ActionsObservable, state: StateObservable) => import("rxjs").Observable;