export interface Editor { value: string; } export declare const defaultEditorState: Editor; export declare const editorModule: { name: string; state: Editor; actions: { changeValue: (value: any) => { type: string; value: any; }; }; mutations: { CHANGE_EDITOR_VALUE: (state: any, { value }: { value: any; }) => any; }; selectors: { editorValue: (state: Editor) => string; }; };