import { ActionsObservable, StateObservable } from 'redux-observable'; import { ID } from '../../../commonStateTypes/common'; import { openSnackbar } from '../../../entity/snackbar/snackbarReducer'; import { updateTags } from '../../../entity/tag/tagReducer'; import { RootState } from '../../../rootStateTypes'; import { ZeniAPI } from '../../../zeniAPI'; import { updateCreatedTagToLocalStore } from '../../taskManager/taskDetailView/taskDetailReducer'; import { createTag, updateTagCreateStatus } from '../tagViewReducer'; export type ActionType = ReturnType | ReturnType | ReturnType | ReturnType | ReturnType; export declare const createTagEpic: (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"; } | import("@reduxjs/toolkit").PayloadAction | { payload: { fetchState: import("../../../commonStateTypes/common").FetchState; tagsId: ID[]; error?: import("../../../zeniAPIStatus").ZeniAPIStatus; }; type: "tagView/updateTagCreateStatus"; } | { payload: { tagId: ID; taskId?: ID; }; type: "taskDetailView/updateCreatedTagToLocalStore"; }>;