/** * @typedef {import('./parse-config').WPEnvironmentConfig} WPEnvironmentConfig */ /** * Deep-merges the values in the given service environment. This allows us to * merge the wp-config.php values instead of overwriting them. * * @param {WPEnvironmentConfig} defaultConfig The default config options. * @param {...string} configs The config options to merge. * * @return {WPEnvironmentConfig} The merged config object. */ export default function mergeConfigs(defaultConfig: WPEnvironmentConfig, ...configs: string[]): WPEnvironmentConfig; export type WPEnvironmentConfig = import("./parse-config").WPEnvironmentConfig;