/**
 *
 * @param {Engine} engine
 * @param {function(Editor):*} [initialization]
 * @returns {{enable:function, disable: function, toggle: function, editor: Editor}}
 */
export function enableEditor(engine: Engine, initialization?: (arg0: Editor) => any): {
    enable: Function;
    disable: Function;
    toggle: Function;
    editor: Editor;
};
import Editor from "./Editor.js";
//# sourceMappingURL=enableEditor.d.ts.map