import { Document } from '../../core/models/Document'; import { License } from '../../core/models/common/License'; import { DeleteNodeCommand } from './DeleteNodeCommand'; /** * A command used to delete the license. * * @author eric.wittmann@gmail.com * @extends DeleteNodeCommand * @class */ export declare class DeleteLicenseCommand extends DeleteNodeCommand { constructor(info?: any); /** * @see io.apicurio.datamodels.cmd.commands.DeleteNodeCommand#readNode(io.apicurio.datamodels.core.models.Document, java.lang.Object) * @param {Document} doc * @param {*} node * @return {License} */ readNode(doc: Document, node: any): License; }