import { ActionsObservable, StateObservable } from 'redux-observable'; import { fetchAllTenants } from '../../entity/tenant/tenantReducer'; import { RootState } from '../../rootStateTypes'; import { fetchApAging } from '../apAgingView/apAgingReport/apAgingReducer'; import { fetchArAging } from '../arAgingView/arAgingReport/arAgingReducer'; import { fetchBillPayCard } from '../billPayCard/billPayCardReducer'; import { fetchCardBalance } from '../cardBalance/cardBalanceReducer'; import { fetchCashBalance } from '../cashBalance/cashBalanceReducer'; import { fetchCashInCashOut } from '../cashInCashOut/cashInCashOutReducer'; import { fetchCashPosition } from '../cashPosition/cashPositionReducer'; import { fetchCompanyPassportView } from '../companyView/companyViewReducer'; import { fetchDashboardLayout } from '../dashboardLayout/dashboardLayoutReducer'; import { fetchInsightsCard } from '../insightsCard/insightsCardReducer'; import { fetchMonthEndCloseChecks } from '../monthEndCloseChecksView/monthEndCloseChecksViewReducer'; import { fetchNetBurnOrIncome } from '../netBurnOrIncome/netBurnOrIncomeReducer'; import { fetchNetBurnOrIncomeStoryCard } from '../netBurnOrIncomeStoryCard/netBurnOrIncomeStoryCardReducer'; import { fetchOpEx } from '../opEx/opExReducer'; import { fetchRewardsPlan } from '../referralView/referralReducer'; import { fetchReimbursementCard } from '../reimbursementCard/reimbursementCardReducer'; import { fetchRevenue } from '../revenue/revenueReducer'; import { fetchTasksCard } from '../tasksCard/tasksCardReducer'; import { fetchTopEx } from '../topEx/topExReducer'; import { fetchDashboard } from './dashboardReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchDashboardEpic: (actions$: ActionsObservable, state$: StateObservable) => import("rxjs").Observable;