import { AbstractCommand } from '../AbstractCommand'; import { Document } from '../../core/models/Document'; import { NodePath } from '../../core/models/NodePath'; /** * A command used to delete all operations from an aai channel. * @author c.desc2@gmail.com * @extends AbstractCommand * @class */ export declare class DeleteAllOperationsCommand_Aai20 extends AbstractCommand { static ALL_TYPES: string[]; static ALL_TYPES_$LI$(): string[]; _parentPath: NodePath; _oldOperations: Array; constructor(parent?: any); /** * @see io.apicurio.datamodels.cmd.ICommand#execute(Document) * @param {Document} document */ execute(document: Document): void; /** * @see io.apicurio.datamodels.cmd.ICommand#undo(Document) * @param {Document} document */ undo(document: Document): void; }