import { FetchState, ID } from '../../commonStateTypes/common'; import { TagPayload } from '../../entity/tag/tagPayload'; import { ZeniAPIStatus } from '../../responsePayload'; import { TagViewState } from './tagViewState'; export declare const initialState: TagViewState; export declare const fetchTagList: import("@reduxjs/toolkit").ActionCreatorWithoutPayload<"tagView/fetchTagList">, updateTagListFetchStatus: import("@reduxjs/toolkit").ActionCreatorWithPayload<{ fetchState: FetchState; error?: ZeniAPIStatus; }, "tagView/updateTagListFetchStatus">, updateTagList: import("@reduxjs/toolkit").ActionCreatorWithPayload<{ data: TagPayload[]; }, "tagView/updateTagList">, createTag: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[tagName: string, taskId: any], { tagName: string; taskId: any; }, "tagView/createTag", never, never>, updateTagCreateStatus: import("@reduxjs/toolkit").ActionCreatorWithPayload<{ fetchState: FetchState; tagsId: ID[]; error?: ZeniAPIStatus; }, "tagView/updateTagCreateStatus">, deleteTag: import("@reduxjs/toolkit").ActionCreatorWithPreparedPayload<[tagId: string, taskId: any], { tagId: string; taskId: any; }, "tagView/deleteTag", never, never>, updateDeleteTagStatus: import("@reduxjs/toolkit").ActionCreatorWithPayload<{ fetchState: FetchState; tagId: ID; error?: ZeniAPIStatus; }, "tagView/updateDeleteTagStatus">; declare const _default: import("redux").Reducer; export default _default;