/** * Configuration Module * Provides vendor-agnostic configuration with proper type safety * * Note: Types are available from @plyaz/types/api, not re-exported here */ export { ConfigBuilder, createConfigBuilder, mergeConfigs, } from './configBuilder'; export { toFetchffConfig, fromFetchffConfig, convertEndpointsToFetchff } from './adapter'; export { getGlobalConfig, setGlobalConfig, updateGlobalConfig, resetGlobalConfig, configureForEnvironment, applyConfigPreset, } from './global'; export { createConfigState, applyConfigUpdate, getEffectiveConfig, clearTemporaryOverrides, applyConfigOverride, getConfigHierarchy, getActiveOverrideKeys, cloneConfig, validateConfigUpdate, } from './configManager'; //# sourceMappingURL=index.d.ts.map