import { ActionsObservable, StateObservable } from 'redux-observable'; import { openSnackbar } from '../../../entity/snackbar/snackbarReducer'; import { updateSubscriptionPaymentAccounts } from '../../../entity/subscriptionPaymentAccount/subscriptionPaymentAccountReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchPaymentSources, updatePaymentSources } from '../cardPaymentViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchPaymentSourcesEpic: (actions$: ActionsObservable, _state$: StateObservable, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: { messageSection: import("../../..").SnackbarMessageSections; messageText: import("../../..").SnackbarMessageSectionTexts; type: import("../../..").SnackbarMessageType; showStatusIcon?: boolean; variables?: { variableName: string; variableValue: string; }[]; }; type: "snackbar/openSnackbar"; } | import("@reduxjs/toolkit").PayloadAction | { payload: import("../../../entity/subscriptionPaymentAccount/subscriptionPaymentAccountPayload").SubscriptionPaymentAccountPayload[]; type: "subscriptionPaymentAccount/updateSubscriptionPaymentAccounts"; } | { payload: { fetchState: import("../../..").FetchState; error?: import("../../../zeniAPIStatus").ZeniAPIStatus; response?: import("../cardPaymentViewPayload").AddCardPaymentSourceResponse; }; type: "cardPaymentView/updatePaymentSources"; }>;