import type { McpConfig, ServerEntry, ImportKind, ServerProvenance } from "./types.js"; interface ConfigSourceSpec { id: "shared-global" | "spectral-global" | "shared-project" | "spectral-project"; label: string; readPath: string; writePath: string; kind: "user" | "project" | "import"; importKind?: string; shared: boolean; scope: "global" | "project"; } export interface ConfigDiscoveryPath { label: string; path: string; exists: boolean; } export interface DiscoveredImportConfig { kind: ImportKind; path: string; } export interface ConfigDiscoverySource extends ConfigDiscoveryPath { id: ConfigSourceSpec["id"]; scope: ConfigSourceSpec["scope"]; kind: "shared" | "spectral"; serverCount: number; } export interface ImportConfigSummary extends DiscoveredImportConfig { serverCount: number; } export interface RepoPromptDiscovery { configured: boolean; configuredPath?: string; executablePath?: string; targetPath?: string; serverName?: string; entry?: ServerEntry; } export interface McpDiscoverySummary { sources: ConfigDiscoverySource[]; imports: ImportConfigSummary[]; hasAnyConfig: boolean; hasAnyDetectedPaths: boolean; hasSharedServers: boolean; hasSpectralOwnedServers: boolean; totalServerCount: number; fingerprint: string; repoPrompt: RepoPromptDiscovery; } export interface ConfigWritePreview { path: string; existed: boolean; changed: boolean; beforeText: string; afterText: string; diffText: string; } export declare function getSpectralGlobalConfigPath(overridePath?: string): string; export declare function getGenericGlobalConfigPath(): string; export declare function getProjectConfigPath(cwd?: string): string; export declare function getProjectSpectralConfigPath(cwd?: string): string; export declare function getConfigDiscoveryPaths(overridePath?: string): ConfigDiscoveryPath[]; export declare function findAvailableImportConfigs(cwd?: string): DiscoveredImportConfig[]; export declare function getMcpDiscoverySummary(overridePath?: string, cwd?: string): McpDiscoverySummary; export declare function loadMcpConfig(overridePath?: string, cwd?: string): McpConfig; export declare function previewCompatibilityImports(importKinds: ImportKind[], overridePath?: string): ConfigWritePreview; export declare function ensureCompatibilityImports(importKinds: ImportKind[], overridePath?: string): { path: string; added: ImportKind[]; }; export declare function buildStarterProjectConfig(): McpConfig; export declare function previewStarterProjectConfig(cwd?: string): ConfigWritePreview; export declare function writeStarterProjectConfig(cwd?: string): string; export declare function previewSharedServerEntry(filePath: string, serverName: string, entry: ServerEntry): ConfigWritePreview; export declare function writeSharedServerEntry(filePath: string, serverName: string, entry: ServerEntry): string; export declare function getServerProvenance(overridePath?: string): Map; export declare function writeDirectToolsConfig(changes: Map, provenance: Map, fullConfig: McpConfig): void; export {}; //# sourceMappingURL=config.d.ts.map