import "./Object.fromEntries";
/**
* Functionally equivalent to structuredClone but
* functions are not cloned but kept asis.
* (as opposed to structuredClone that chokes if it encounters a function)
*/
export declarefunction structuredCloneButFunctions<T>(o: T): T;