import type { Command } from 'commander'; import { type InstallDeps } from '../../agent/plugins/install.js'; import { type UpdateDeps } from '../../agent/plugins/update.js'; export interface PluginCommandDeps extends InstallDeps, UpdateDeps { logger?: Pick; } export declare function registerPluginCommand(program: Command, deps?: PluginCommandDeps): void;