UNPKG

@nanocollective/nanocoder

Version:

A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter

11 lines 513 B
import { type McpServerConfig } from '../templates/mcp-templates.js'; interface McpStepProps { onComplete: (mcpServers: Record<string, McpServerConfig>) => void; onBack?: () => void; onDelete?: () => void; existingServers?: Record<string, McpServerConfig>; configExists?: boolean; } export declare function McpStep({ onComplete, onBack, onDelete, existingServers, configExists, }: McpStepProps): import("react/jsx-runtime").JSX.Element | null; export {}; //# sourceMappingURL=mcp-step.d.ts.map