UNPKG

buroventures-harald-code

Version:

Harald Code - AI-powered coding assistant CLI

21 lines (20 loc) 607 B
/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import React from 'react'; import { type IdeContext, type MCPServerConfig } from 'buroventures-harald-code-core'; interface ContextSummaryDisplayProps { geminiMdFileCount: number; contextFileNames: string[]; mcpServers?: Record<string, MCPServerConfig>; blockedMcpServers?: Array<{ name: string; extensionName: string; }>; showToolDescriptions?: boolean; ideContext?: IdeContext; } export declare const ContextSummaryDisplay: React.FC<ContextSummaryDisplayProps>; export {};