import { ActionCreator } from './Action'; import { StateChanger } from './State'; import { Element } from './Element'; export declare type SvgEditorActionCreator = (actionParameters: Partial) => Element; declare type SvgEditor = (actionCreator: ActionCreator) => SvgEditorActionCreator; export declare const initializeSvgEditor: (stateChanger: StateChanger) => SvgEditor; export {};