import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { updateAccounts } from '../../../entity/account/accountReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchAccountsForTransferFlow, updateAccountsForTransferFlow, updateAccountsForTransferFlowFailure } from '../createTransferEntryReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; /** * Pools fetched concurrently: `groupBy(kind)` keeps `transferEntryEligible` * and `creditCardOnlyEligible` in their own streams so a back-to-back dispatch * of both does not cancel the first. Within a single type, a fresh dispatch * supersedes any in-flight request (per-group `switchMap`). */ export declare const fetchTransferAccountsEpic: (actions$: ActionsObservable, _state$: StateObservable, zeniAPI: ZeniAPI) => Observable;