export type McpServerConfig = { command: string; args: string[]; } | { url: string; headers?: Record; }; export type McpServersBlock = { mcpServers: Record; }; export declare function printMcpConfigJson(config: McpServerConfig): string; export type ClaudeUpdateResult = { updated: true; path: string; skipped?: undefined; reason?: undefined; } | { updated?: undefined; skipped: true; reason: string; path?: undefined; }; export declare function getClaudeConfigPath(): string; export declare function updateClaudeDesktopConfig(config: McpServerConfig): ClaudeUpdateResult; export declare function updateAntigravityConfig(config: McpServerConfig): ClaudeUpdateResult; //# sourceMappingURL=mcp-config-writer.d.ts.map