/**
* Deeply clones an object or an array.
*
* @param something - The object to clone.
* @returns A deep clone of the provided value.
*
* @public
*/
export declarefunctionclone<Something>(something: Something): Something;
//# sourceMappingURL=clone.d.ts.map