import type { ConfigObject, ConfigValue } from "../types.js"; export declare function cloneConfigObject(value: ConfigObject): ConfigObject; export declare function setConfigEntry(target: ConfigObject, key: string, value: ConfigValue): void; export declare function hasConfigEntry(target: ConfigObject, key: string): boolean;