/**
 * MCPsmith Server Generator
 *
 * Generates complete MCP servers from analyzer results.
 *
 * @architecture @.aiwg/architecture/mcpsmith-architecture.md - Section 5.5
 * @implements @.aiwg/architecture/decisions/ADR-014-mcpsmith-mcp-server-generator.md
 */
import type { GeneratorOptions, GeneratedServer } from './types.js';
/**
 * Generate MCP server from analyzer result
 */
export declare function generateServer(options: GeneratorOptions): Promise<GeneratedServer>;
/**
 * Update registry with new server
 */
export declare function updateRegistry(registryPath: string, serverId: string, serverInfo: any): Promise<void>;
//# sourceMappingURL=generator.d.ts.map