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 { fetchChargeCardConfig } from '../chargeCardConfig/chargeCardConfigReducer'; import { fetchChargeCardList, fetchCreditAccount } from '../chargeCardList/chargeCardListReducer'; import { fetchDepositAccountListForCards, fetchIssueCardPage } from './issueChargeCardReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchIssueCardPageEpic: (actions$: ActionsObservable, state$: StateObservable) => Observable;