import { BaseCommand } from './base-command'; import { IGraphicElement } from '../types'; import { EditorHost } from '../core'; export declare class AddElementCommand extends BaseCommand { private element; name: string; private elementsPlugin; constructor(host: EditorHost, element: IGraphicElement); execute(): void; undo(): void; }