import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { ID } from '../../commonStateTypes/common'; import { updateForecast } from '../../entity/forecast/forecastReducer'; import { updateCalculatedSectionAccountsView, updateSectionAccountsView } from '../../entity/sectionAccountsView/sectionAccountsViewReducer'; import { RootState } from '../../rootStateTypes'; import { ZeniAPI } from '../../zeniAPI'; import { fetchNetBurnOrIncomeForTimeframe, updateNetBurnOrIncomeForTimeframe, updateNetBurnOrIncomeForTimeframeFailure, updateNetBurnOrIncomeThisPeriod } from './netBurnOrIncomeReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const reportIdUniqueKey: (forecastId?: ID) => "net_burn_or_income" | `net_burn_or_income+${string}`; export declare const fetchNetBurnOrIncomeForTimeframeEpic: (actions$: ActionsObservable, state: StateObservable, zeniAPI: ZeniAPI) => Observable;