import { AbstractCommand } from '../AbstractCommand'; /** * A command used to create a new response definition in a document. * @author eric.wittmann@gmail.com * @extends AbstractCommand * @class */ export declare abstract class NewResponseDefinitionCommand extends AbstractCommand { _newDefinitionName: string; _newDefinitionDescription: string; _defExisted: boolean; constructor(definitionName?: any, example?: any, description?: any); }