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 { fetchRevenueForTimeframe, updateRevenueForTimeframe, updateRevenueForTimeframeFailure, updateRevenueThisPeriod } from './revenueReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const reportIdUniqueKey: (forecastId?: ID) => "revenue" | `revenue+${string}`; export declare const fetchRevenueForTimeframeEpic: (actions$: ActionsObservable, state: StateObservable, zeniAPI: ZeniAPI) => Observable;