import { ActionsObservable, StateObservable } from 'redux-observable'; import { openSnackbar } from '../../../entity/snackbar/snackbarReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { fetchAiAccountantCustomers, triggerAiAccountantJob, triggerAiAccountantJobFailure, triggerAiAccountantJobSuccess } from '../aiAccountantViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const triggerAiAccountantJobEpic: (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: undefined; type: "aiAccountantView/fetchAiAccountantCustomers"; } | { payload: undefined; type: "aiAccountantView/triggerAiAccountantJobSuccess"; } | { payload: import("../../../zeniAPIStatus").ZeniAPIStatus>; type: "aiAccountantView/triggerAiAccountantJobFailure"; }>;