import type { Command } from "commander"; interface PluginNewOpts { description?: string; withSkill?: string; cwd?: string; } export declare function pluginNewCommand(pluginName: string, opts: PluginNewOpts): Promise; export declare function registerPluginCommand(program: Command): void; export {};