import { SvgEditorActionCreator } from './SvgEditor'; import { Element, ElementType } from './Element'; import { addElement, setElementParameters, addElementParameters, removeElement } from './Action'; declare const createSvgEditor: (document: Document, svgElement: SVGSVGElement) => (actionCreator: import("./Action").ActionCreator) => SvgEditorActionCreator; export { createSvgEditor, addElement, setElementParameters, addElementParameters, removeElement, SvgEditorActionCreator, Element, ElementType };