//#region src/object/clone.d.ts /** * Creates a shallow copy of value * @param value - The value to clone * @returns Returns the cloned value * @example * const obj = { a: 1, b: { c: 2 } }; * const cloned = clone(obj); * cloned.a = 10; * console.log(obj.a); // 1 * console.log(cloned.b === obj.b); // true (shallow copy) */ declare function clone(value: T): T; //#endregion export { clone }; //# sourceMappingURL=clone.d.cts.map