import { Config } from './config.js'; /** * Load configuration for SDK * * This function is called by SDK's loadConfig option AFTER SDK has already loaded * config from file, CLI args, and ENV vars. * * SDK automatically handles (before calling this function): * - Config file loading (from configFile option in server options) * - CLI arguments parsing (--key value format) * - Environment variables (converts ENV_VAR_NAME to camelCase) * - Merging with priority: Extension > CLI > ENV > File > Defaults * * This function receives already parsed config and can transform/validate it further. * Extension config (MCP_CONFIG) is merged automatically by SDK with highest priority. */ export declare function loadConfigForSDK(parsedConfig: Partial): Promise; //# sourceMappingURL=config-loader.d.ts.map