/** * Add Component Functionality * Main logic for adding new components to existing MCP server projects */ import { AddComponentOptions } from '../types/index.js'; /** * Add a new component to an existing MCP server project */ export declare function addComponent(config: AddComponentOptions, targetPath?: string): Promise; /** * List existing components in the project */ export declare function listExistingComponents(targetPath?: string): Promise; //# sourceMappingURL=add-component.d.ts.map