/**
 * @description create editor
 * @author wangfupeng
 */
import { ICreateOption } from '../config/interface';
import { IDomEditor } from '../editor/interface';
/**
 * 创建编辑器
 */
export default function (option: Partial<ICreateOption>): IDomEditor;
