import { MCPConfig, MCPClientConfig } from '../types/types.js'; /** * Checks which MCP client configs exist on the system */ export declare const getAvailableMCPClients: () => Promise; /** * Prompts the user to select an MCP client */ export declare const promptUserForMCPClient: (availableClients: MCPClientConfig[]) => Promise; /** * Gets the MCP config file, creates it if it doesn't exist */ export declare const getMCPConfig: () => Promise; /** * Updates the MCP config file with new server configurations */ export declare const updateMCPConfig: (config: MCPConfig) => Promise;