/** * Polyfill for `globalThis.structuredClone`. * * Copied from https://github.com/nodejs/undici/blob/40ab05029814c9778b80657d530e943d1cdfc6f2/lib/fetch/constants.js#L105 */ export default function structuredClone(value: any, options?: { transfer: any[]; } | undefined): any;