import { AbstractCommand } from '../AbstractCommand'; import { Document } from '../../core/models/Document'; import { NodePath } from '../../core/models/NodePath'; /** * A command used to delete a single property from a schema. * @author eric.wittmann@gmail.com * @extends AbstractCommand * @class */ export declare class DeletePropertyCommand extends AbstractCommand { _propertyName: string; _propertyPath: NodePath; _schemaPath: NodePath; _oldProperty: any; _oldRequired: boolean; constructor(property?: 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; }