import { ActionsObservable, StateObservable } from 'redux-observable'; import { updateAiAccountantCustomers as updateAiAccountantCustomerEntities } from '../../../entity/aiAccountantCustomer/aiAccountantCustomerReducer'; import { updateAllUsers } from '../../../entity/user/userReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchAiAccountantCustomers, updateAiAccountantCustomers, updateAiAccountantCustomersFailure } from '../aiAccountantViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const fetchAiAccountantCustomersEpic: (actions$: ActionsObservable, _: StateObservable, zeniAPI: ZeniAPI) => import("rxjs").Observable<{ payload: { users: import("../../..").UserPayload[]; updateType?: import("../../..").UpdateType; }; type: "user/updateAllUsers"; } | { payload: import("../aiAccountantViewPayload").AiAccountantCustomerPayload[]; type: "aiAccountantView/updateAiAccountantCustomers"; } | { payload: import("../../../zeniAPIStatus").ZeniAPIStatus>; type: "aiAccountantView/updateAiAccountantCustomersFailure"; } | { payload: import("../aiAccountantViewPayload").AiAccountantCustomerPayload[]; type: "aiAccountantCustomer/updateAiAccountantCustomers"; }>;