import type { DeepPatch } from "@ng-org/alien-deepsignals"; import { Patch } from "./applyPatches.ts"; /** * Deep clone function with support for Sets and Maps. * Function generated by Claude Opus 4.5 * @ignore */ export declare const deepClone: (object: T, seen?: WeakMap) => T; /** * Converts DeepSignal patches to ORM Wasm-compatible patches * @param patches DeepSignal patches * @returns Patches with stringified path * * @ignore */ export declare function deepPatchesToWasm(patches: DeepPatch[]): Patch[]; //# sourceMappingURL=utils.d.ts.map