import { Command, Option } from 'commander'; export { Command, Option } from 'commander'; import { S as SerializedWorkspace, b as SerializedDmnoPlugin } from '../config-engine-CX9TVo2O.js'; export { default as kleur } from 'kleur'; import '@dmno/configraph'; import 'node:crypto'; type PluginCliDmnoCtx = { workspace: SerializedWorkspace; plugin: SerializedDmnoPlugin; selectedServiceName?: string; }; declare function createDmnoPluginCli(opts: { commands: Array; }): Command; declare function createDmnoPluginCliCommand(commandSpec: { name: string; alias?: string; summary: string; description: string; examples?: Array<{ command: string; description: string; }>; options?: Array