/** * Deep clone an object * A deep clone is a clone of the source object and all of its children, and their children, and so on. * @param source - The source object to clone * @returns - A deep clone of the source object */ export declare function cloneDeep(source: T): T; //# sourceMappingURL=clone-deep.d.ts.map