export declare function freezeDeep(obj: T): T; /** * Only freezes the descendants of an object, not the object itself. * * @param obj */ export declare function freezeDescendants(obj: T): T;