import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../rootStateTypes'; import { fetchOpExByVendor } from '../opExByVendor/opExByVendorReducer'; import { fetchAccruedScheduleList, fetchScheduleList } from '../scheduleView/scheduleListView/scheduleListReducer'; import { fetchVendorsFiling1099List } from '../vendorFiling1099/vendorFiling1099List/vendorFiling1099ListReducer'; import { fetchVendorsList } from '../vendorList/vendorListReducer'; import { fetchVendorTabView } from './vendorTabViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchVendorTabViewEpic: (actions$: ActionsObservable, state$: StateObservable) => Observable;