import { type CLI } from 'cli-forge'; import type { Plugin, ResolvedConfig } from '../types/index.js'; /** * Get the CLI namespace for a plugin. * Strips @functional-examples/ scope, keeps everything else. */ export declare function getCommandNamespace(pluginName: string): string; /** * Resolve commands from a plugin (handles static array or function). */ export declare function resolvePluginCommands(plugin: Plugin, config: ResolvedConfig): Promise; /** * Load all plugin commands, wrapping each plugin's commands * under its namespace. */ export declare function loadPluginCommands(plugins: Plugin[], config: ResolvedConfig): Promise; //# sourceMappingURL=plugin-commands.d.ts.map