import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { ID } from '../../commonStateTypes/common'; import { updateForecast } from '../../entity/forecast/forecastReducer'; import { updateSectionAccountsView } from '../../entity/sectionAccountsView/sectionAccountsViewReducer'; import { RootState } from '../../rootStateTypes'; import { ZeniAPI } from '../../zeniAPI'; import { fetchOpExReportForTimeframe, updateOpExFailureForTimeframe, updateOpExForTimeframe, updateOpExThisPeriod } from './opExReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const reportIdUniqueKey: (forecastId?: ID) => "operating_expenses" | `operating_expenses+${string}`; export declare const fetchOpExReportForTimeframeEpic: (actions$: ActionsObservable, state: StateObservable, zeniAPI: ZeniAPI) => Observable;