import { IAppConfigStatePart } from "../store"; import { ModErrorAction } from "./mod-duck"; export declare const ACTION_APPCFG_UPDATE_KEY = "metaexplorer.io/APPCFG_UPDATE_KEY"; export declare const ACTION_APPCFG_UPDATE_ITPT = "metaexplorer.io/APPCFG_UPDATE_ITPT"; export declare type AppCfgAction = { type: 'metaexplorer.io/APPCFG_UPDATE_KEY'; appKey: string; } | { type: 'metaexplorer.io/APPCFG_UPDATE_ITPT'; mainItpt: string; } | ModErrorAction; export declare const appKeyUpdateAction: (updatedKey: string) => AppCfgAction; export declare const appItptUpdateAction: (updatedItpt: string) => AppCfgAction; export declare const appCfgStatePartReducer: (state: IAppConfigStatePart, action: AppCfgAction) => IAppConfigStatePart;