import { Document } from '../../core/models/Document'; import { NodePath } from '../../core/models/NodePath'; import { AbstractSchemaInhCommand } from './AbstractSchemaInhCommand'; /** * A command used to delete all child schemas from a schema. * @author eric.wittmann@gmail.com * @extends AbstractSchemaInhCommand * @class */ export declare class DeleteAllChildSchemasCommand extends AbstractSchemaInhCommand { _schemaPath: NodePath; _childSchemaType: string; _oldSchemas: Array; constructor(parent?: any, type?: 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; }