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 { fetchVendorTypeList } from '../../../../vendorTypeList/vendorTypeListReducer'; import { fetchDepositAccountList } from '../../../zeniAccounts/depositAccountList/depositAccountListReducer'; import { fetchPaymentAccountList } from '../../../zeniAccounts/paymentAccountList/paymentAccountListReducer'; import { fetchBillPayConfig } from '../../billPayConfig/billPayConfigReducer'; import { fetchBillAndInitializeLocalStore, fetchEditBillDetailPage, updateShowAutofill } from '../editBillViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchEditBillDetailPageEpic: (actions$: ActionsObservable, state$: StateObservable) => Observable;