import { AbstractCommand } from '../AbstractCommand'; import { Document } from '../../core/models/Document'; import { NodePath } from '../../core/models/NodePath'; /** * A command used to delete all servers from a document. * @author eric.wittmann@gmail.com * @extends AbstractCommand * @class */ export declare class DeleteAllOperationsCommand extends AbstractCommand { static ALL_METHODS: string[]; static ALL_METHODS_$LI$(): string[]; _parentPath: NodePath; _oldOperations: Array; constructor(parent?: any); /** * @see io.apicurio.datamodels.cmd.ICommand#execute(io.apicurio.datamodels.core.models.Document) * @param {Document} document */ execute(document: Document): void; /** * @see io.apicurio.datamodels.cmd.ICommand#undo(io.apicurio.datamodels.core.models.Document) * @param {Document} document */ undo(document: Document): void; }