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