import { ActionsObservable } from 'redux-observable'; import { updateCreditAgentRows } from '../../../entity/creditAgent/creditAgentReducer'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchCardProfiles, fetchCardProfilesFailure, fetchCardProfilesSuccess } from '../creditAgentViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchCardProfilesEpic: (actions$: ActionsObservable, _state$: unknown, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: import("../creditAgentViewPayload").CardTenantProfileRowPayload[]; type: "creditAgentView/fetchCardProfilesSuccess"; } | { payload: import("../../../zeniAPIStatus").ZeniAPIStatus>; type: "creditAgentView/fetchCardProfilesFailure"; } | { payload: import("../creditAgentViewPayload").CardTenantProfileRowPayload[]; type: "creditAgent/updateCreditAgentRows"; }>;