import { AnyObject } from '@p-lc/shared'; import { EditorRawPlugin } from '../../types'; /** * 编辑器样式仓库插件属性扩展 */ export interface EditorPluginStyleStorePropertiesExt { editor: { /** * 样式仓库 */ styleStore: { /** * CSS 变量 */ cssVars: AnyObject; /** * 设置 CSS 变量 * @param cssVars CSS 变量 */ setCssVars(cssVars: AnyObject): void; }; }; } /** * 编辑器样式仓库插件 */ export declare const editorPluginStyleStore: EditorRawPlugin; //# sourceMappingURL=editor-plugin-style-store.d.ts.map