import { JSONObject } from './types.js'; /** * Copyright (c) Investec * * This source code is licensed under the MIT license found in the * LICENSE.md file in the root directory of this source tree. */ declare function makeNestedSettings({ delimiter, rawSettings, settings, }: { delimiter: string; rawSettings: Record; settings: JSONObject; }): JSONObject; export { makeNestedSettings };