///
declare module '*.vue' {
import type { DefineComponent } from 'vue'
const component: DefineComponent<{}, {}, any>
export default component
}
declare module '@wangeditor/editor-for-vue' {
import type { DefineComponent } from 'vue'
const Editor: DefineComponent
const Toolbar: DefineComponent
export { Editor, Toolbar }
}
declare module '@wangeditor/editor' {
export const IDomEditor: any
export const IEditorConfig: any
export const createEditor: any
export const createToolbar: any
}