import { ActionsObservable, StateObservable } from 'redux-observable'; import { Observable } from 'rxjs'; import { RootState } from '../../../../rootStateTypes'; import { fetchClassList } from '../../../classList/classListReducer'; import { fetchUserListByType } from '../../../userListView/userListViewReducer'; import { fetchCashbackDetail } from '../cashbackDetail/cashbackDetailReducer'; import { fetchChargeCardConfig } from '../chargeCardConfig/chargeCardConfigReducer'; import { fetchChargeCardSetupView } from '../chargeCardSetUp/chargeCardSetUpViewReducer'; import { fetchDepositAccountListForCards } from '../issueChargeCard/issueChargeCardReducer'; import { fetchChargeCardList, fetchChargeCardListPage, fetchCreditAccount, fetchCreditAccountRepayment, fetchDebitCardSummary } from './chargeCardListReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchChargeCardListPageEpic: (actions$: ActionsObservable, state$: StateObservable) => Observable;