import type { WebsearchConfig } from '../config'; import type { McpConfig } from './types'; export type { LocalMcpConfig, McpConfig, RemoteMcpConfig } from './types'; /** * Creates MCP configurations, excluding disabled ones. * Accepts an optional websearchConfig to override the default Exa provider. */ export declare function createBuiltinMcps(disabledMcps?: readonly string[], websearchConfig?: WebsearchConfig): Record;