import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { updateAccounts } from '../../../../../entity/account/accountReducer'; import { updateBankAccounts } from '../../../../../entity/bankAccount/bankAccountReducer'; import { updateCompanyPrimaryAccount } from '../../../../../entity/company/companyReducer'; import { updatePaymentAccounts } from '../../../../../entity/paymentAccount/paymentAccountReducer'; import { openSnackbar } from '../../../../../entity/snackbar/snackbarReducer'; import { RootState } from '../../../../../rootStateTypes'; import { ZeniAPI } from '../../../../../zeniAPI'; import { fetchBillingAccountsView } from '../../../../settingsView/settingsViewReducer'; import { updateUserBankAccount } from '../../../../userFinancialAccount/userFinancialAccountReducer'; import { updateNewAddedBillPaymentAccount } from '../../../billPay/editBillView/editBillViewReducer'; import { updateNewAddedChargeCardPaymentAccount } from '../../../chargeCards/chargeCardRepaymentDetail/chargeCardRepaymentDetailReducer'; import { updatePaymentAccountList } from '../../../zeniAccounts/paymentAccountList/paymentAccountListReducer'; import { establishPlaidConnection, establishPlaidConnectionFailure, establishPlaidConnectionSuccess, getPaymentAccounts } from '../../plaidAccountViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const establishPlaidConnectionEpic: (actions$: ActionsObservable, state: StateObservable, zeniAPI: ZeniAPI) => Observable;