import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../../rootStateTypes'; import { fetchCompanyHealthMetricConfig } from '../../companyHealthMetricView/companyHealthMetricConfigReducer'; import { fetchCompanyHealthMetricView } from '../../companyHealthMetricView/companyHealthMetricViewReducer'; import { fetchCompanyTaskManagerView } from '../../companyTaskManagerView/companyTaskManagerViewReducer'; import { fetchCompanyOnboardingView, fetchOnboardingCompletedCompanies, fetchQBOConnectionPool } from '../../onboardingView/cockpitView/onboardingCockpitViewReducer'; import { fetchReviewCompanyView } from '../../reviewCompanyView/reviewCompanyViewReducer'; import { fetchSubscriptionList } from '../../subscriptionView/subscriptionViewReducer'; import { fetchCompanyManagementView, fetchCompanyMetaData, fetchCompanyPortfolioView, fetchZeniUsers } from '../companyViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchAllCockpitViewsEpic: (actions$: ActionsObservable, state$: StateObservable) => Observable;