import { ActionsObservable, StateObservable } from 'redux-observable'; import { openSnackbar } from '../../../entity/snackbar/snackbarReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { clearAllNotificationPreferencesView, clearNotificationPreferencesLocalOverrides, saveNotificationPreferences, saveNotificationPreferencesFailure, saveNotificationPreferencesSuccess } from '../notificationPreferencesViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const saveNotificationPreferencesEpic: (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: "notificationPreferencesView/clearAllNotificationPreferencesView"; } | { payload: undefined; type: "notificationPreferencesView/clearNotificationPreferencesLocalOverrides"; } | { payload: undefined; type: "notificationPreferencesView/saveNotificationPreferences"; } | { payload: import("../notificationPreferencesViewReducer").SaveNotificationPreferencesFailurePayload; type: "notificationPreferencesView/saveNotificationPreferencesFailure"; } | { payload: import("../notificationPreferencesViewReducer").SaveNotificationPreferencesSuccessPayload; type: "notificationPreferencesView/saveNotificationPreferencesSuccess"; }>;