import { ActionsObservable, StateObservable } from 'redux-observable'; import { updateCreditAgentRow } from '../../../entity/creditAgent/creditAgentReducer'; import { openSnackbar } from '../../../entity/snackbar/snackbarReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { updateCardProfile, updateCardProfileFailure, updateCardProfileSuccess } from '../creditAgentViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const updateCardProfileEpic: (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: { tenantId: string; }; type: "creditAgentView/updateCardProfileSuccess"; } | { payload: { tenantId: string; error: import("../../../zeniAPIStatus").ZeniAPIStatus>; }; type: "creditAgentView/updateCardProfileFailure"; } | { payload: { payload: import("../creditAgentViewPayload").CardTenantProfileRowPayload; tenantId: string; }; type: "creditAgent/updateCreditAgentRow"; }>;