type ObjectLike = Record; /** * Updates a value with new properties while preserving property enumerability. Use this function to modify * existing types without altering their configuration. */ export declare function Update(current: ObjectLike, hidden: ObjectLike, enumerable: ObjectLike): ObjectLike; export {};