/** * * @template {object} T * @param {T} target - The frozen object to base the new object on. * @param {Partial} source - The properties to assign onto the new object. * @returns {T} - A new object, with the same prototype as `target`, with `source` assigned onto it. */ export declare function assignToFrozenObject(target: T, source: Partial): T;