import type { McpName } from "./types"; export { McpNameSchema, type McpName } from "./types"; export type { McpServerConfig, LocalMcpServerConfig, RemoteMcpServerConfig } from "./types"; /** * Creates the MCP server configurations, excluding any disabled MCPs * * @param disabledMcps - Array of MCP names to disable * @returns Record of enabled MCP server configurations */ export declare function createBuiltinMcps(disabledMcps?: McpName[]): Record;