import { MCPServer, MCPConfig } from '../types/types.js';
/**
 * Prompt the user to select which activated servers to edit and what action to perform
 */
export declare const selectServerToEdit: (mcpConfig: MCPConfig) => Promise<{
    server: string;
    action: string;
} | null>;
/**
 * Add a new MCP server by selecting from available server configs
 */
export declare const addNewServer: () => Promise<{
    serverName: string;
    serverConfig: MCPServer;
} | null>;
