import { ActionsObservable, StateObservable } from 'redux-observable'; import { openSnackbar } from '../../../entity/snackbar/snackbarReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { addCardPaymentSource, fetchPaymentSources, updateAddCardPaymentSourceStatus } from '../cardPaymentViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const addCardPaymentSourceEpic: (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"; } | { payload: { fetchState: import("../../..").FetchState; error?: import("../../../zeniAPIStatus").ZeniAPIStatus; paymentSources?: import("../cardPaymentViewPayload").PaymentSourcesPayload; }; type: "cardPaymentView/updateAddCardPaymentSourceStatus"; } | { payload: undefined; type: "cardPaymentView/fetchPaymentSources"; }>;