import { AbstractCommand } from '../AbstractCommand'; import { Document } from '../../core/models/Document'; import { NodePath } from '../../core/models/NodePath'; /** * A command used to rename a schema property. * @author eric.wittmann@gmail.com * @extends AbstractCommand * @class */ export declare class RenamePropertyCommand extends AbstractCommand { _parentPath: NodePath; _oldPropertyName: string; _newPropertyName: string; constructor(parent?: any, oldPropertyName?: any, newPropertyName?: 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; /** * Does the work of renaming a path from one name to another. * @param {Document} document * @param {string} from * @param {string} to * @private * @private */ _doPropertyRename(document: Document, from: string, to: string): void; }