/** * Recursively clones an object or array. * * @template T */ declare const clone: (obj: V) => V; export default clone;