import { EditorHost } from './core/editor-host'; export interface IOptions { basePropertyPanel?: boolean; baseCanvasPropertyPanel?: boolean; exportPlugin?: boolean; previewPlugin?: boolean; importPlugin?: boolean; } export declare function createEditorHost({ basePropertyPanel, baseCanvasPropertyPanel, exportPlugin, previewPlugin, importPlugin, }?: IOptions): EditorHost;