import { Command } from "commander"; /** * Add global output options to a subcommand. * * Commander.js doesn't automatically make program-level options available * when placed after subcommand names. This helper adds the common output * options to subcommands so users can write: * rdcli bookmarks list -q * instead of: * rdcli -q bookmarks list * * The options are still accessed via `this.optsWithGlobals()` in actions. */ export declare function addOutputOptions(cmd: Command): Command; //# sourceMappingURL=command-options.d.ts.map