/** * Deep-clones a value preserving cycles. Prefers the native `structuredClone` * when available; otherwise falls back to a manual walk that handles Dates, * arrays, and plain objects. Functions are returned by reference since they * can't be structurally cloned. */ export declare function safeClone(obj: T, map?: WeakMap): T; //# sourceMappingURL=clone.d.ts.map