import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { updateBankAccounts } from '../../entity/bankAccount/bankAccountReducer'; import { updatePaymentAccounts } from '../../entity/paymentAccount/paymentAccountReducer'; import { RootState } from '../../rootStateTypes'; import { ZeniAPI } from '../../zeniAPI'; import { updatesPaymentToInLocalStore } from '../spendManagement/reimbursement/editRemiView/editRemiViewReducer'; import { fetchUserFinancialAccount, updateUserFinancialAccount, updateUserFinancialAccountFailure } from './userFinancialAccountReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchUserFinancialAccountEpic: (actions$: ActionsObservable, _state$: StateObservable, zeniAPI: ZeniAPI) => Observable;