import type { McpClientConfig, McpClientOptions } from './client.js'; import type { McpServerConfig } from './config.js'; /** * Resolves an MCP servers config into an array of client configurations ready for instantiation. * * Registered into the `mcpServerLoader` slot by the Node entry point so that `McpClient.loadServers` * can reach it without the browser bundle graph importing any of this module's Node-only dependencies. * * @param config - A file path to a JSON config, or a flat server map object. * @param defaults - Options applied to all clients unless overridden per-server. * @returns Resolved McpClientConfig array (one per enabled, successfully-resolved server). * * @internal */ export declare function resolveServerConfigs(config: string | Record, defaults?: McpClientOptions): Promise; //# sourceMappingURL=config.node.d.ts.map