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

16 lines 714 B
import type { ProviderConfig } from '../../types/config.js'; import type { McpServerConfig } from '../templates/mcp-templates.js'; interface SummaryStepProps { providerConfigPath: string; mcpConfigPath: string; providers: ProviderConfig[]; mcpServers: Record<string, McpServerConfig>; onSave: () => void; onAddProviders: () => void; onAddMcpServers: () => void; onCancel: () => void; onBack?: () => void; } export declare function SummaryStep({ providerConfigPath, mcpConfigPath, providers, mcpServers, onSave, onAddProviders, onAddMcpServers, onCancel, onBack, }: SummaryStepProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=summary-step.d.ts.map