import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../../../rootStateTypes'; import { fetchAccountList } from '../../../accountList/accountListReducer'; import { fetchClassList } from '../../../classList/classListReducer'; import { fetchOwnerList } from '../../../ownerList/ownerListReducer'; import { fetchVendorsList } from '../../../vendorList/vendorListReducer'; import { fetchVendorTypeList } from '../../../vendorTypeList/vendorTypeListReducer'; import { fetchVendor, fetchVendorDetails } from '../vendorViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchVendorDetailsEpic: (actions$: ActionsObservable, state$: StateObservable) => Observable;