/**
 * Function that return the cloned type of the provided generic type.
 *
 * @param source Generic object to be cloned.
 * @returns The clone type of th eprovided type.
 */
export declare function cloneDeep<T>(source: T): T;
