import { ActionsObservable, StateObservable } from 'redux-observable'; import { RootState } from '../../../../../rootStateTypes'; import { fetchCompanyConfig } from '../../../../companyConfigView/companyConfigReducer'; import { fetchOnboardingCustomerSetupView, fetchOnboardingCustomerView } from '../../onboardingCustomerViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType; export declare const fetchOnboardingCustomerViewEpic: (actions$: ActionsObservable, state$: StateObservable) => import("rxjs").Observable<{ payload: undefined; type: "companyConfig/fetchCompanyConfig"; } | { payload: { companyId: string; cacheOverride: any; reCalculateCurrentStep: any; }; type: "onboardingCustomerView/fetchOnboardingCustomerSetupView"; }>;