/** * CLI Prompts for Adding Components * Interactive prompts for configuring new MCP components */ import { ComponentType, AddComponentOptions } from '../types/index.js'; /** * Run interactive prompts for adding a component */ export declare function runAddComponentPrompts(componentType?: ComponentType, componentName?: string, initialOptions?: Partial): Promise; /** * Confirm component configuration */ export declare function confirmComponentConfig(config: AddComponentOptions): Promise; //# sourceMappingURL=add-prompts.d.ts.map