/** 服务 MapStore 的 Key 集合 */ export declare const MapStoreKeys: { /** 组件集合 */ componentStore: string; /** 模版集合 */ templateSchemaStore: string; /** html页面集合 */ pageSchemaStore: string; /** 编辑器集合 */ editorOptionStore: string; /** 撤销恢复集合 */ undoManagerStore: string; /** 样式数据集合 */ cssRuleStore: string; /** 全局资源存储 */ globalStore: string; }; /** 全局对象 Keys */ export declare const globalStoreKeys: { /** 协议数据 */ schemaTree: string; /** 插槽协议数据 */ schemaSlots: string; }; /** 撤销管理集合 */ export declare const UndoManagerKeys: { /** 协议数据撤销管理 */ htmlSchemaUndoManager: string; };