import { ICommandDefinition } from "@zowe/imperative";
/**
 * Command one [object] defintion. This definition is of imperative type "command" and therefore must have a
 * command handler (which performs the "work" for this command).
 *
 * In this case, "command-with-options" will echo options specified on the command.
 *
 * Property Summary:
 * =================
 * "name" of the [object]. Should be a noun (e.g. data-set)
 *
 * "aliases" normally contains a shortened form of the command
 *
 * "summary" will display when issuing the help on this [objects] [action]
 *
 * "type" is "command" which means a handler is required
 *
 * "handler" is the file path to the handler (does the work)
 *
 * "options" an array of options
 */
declare const DisplayDefinition: ICommandDefinition;
export = DisplayDefinition;
