/** @jsx jsx */ /** @jsxFrag React.Fragment */ import React from 'react'; import { EditorState } from '../model/States'; import { MMELRepo, RepoIndex } from '../model/repo'; import { EditorAction } from '../model/editor/state'; import { ChangeLog } from '../model/changelog'; declare const ModelEditor: React.FC<{ isVisible: boolean; className?: string; setClickListener: (f: (() => void)[]) => void; state: EditorState; redo?: () => void; undo?: () => void; copy?: () => void; paste?: () => void; setSelectedId: (id: string | undefined) => void; repo?: MMELRepo; index: RepoIndex; act: (x: EditorAction) => void; setUndoListener: (x: (() => void) | undefined) => void; clearRedo: () => void; changelog: ChangeLog; }>; export default ModelEditor; //# sourceMappingURL=maineditor.d.ts.map