/** * Create a new object with the same values as {@link a}, but such that none * reference the same place in memory. * @param a The base object to clone. */ export declare function recursiveClone(a: any): any;