import { AbstractCommand } from '../AbstractCommand'; import { NodePath } from '../../core/models/NodePath'; /** * A command used to set the Example for a 3.0 MediaType or a 2.0 Response. * @author eric.wittmann@gmail.com * @extends AbstractCommand * @class */ export declare abstract class SetExampleCommand extends AbstractCommand { _parentPath: NodePath; _newExample: any; _oldValue: any; constructor(parent?: any, example?: any); }