/** * Deep cloning helper for objects */ declare function deepClone<T>(obj: T): T; export = deepClone;