/** * Creates a new array of objects with prototype polluting properties removed * from each item. * * @param objects - The objects to remove the prototype polluting properties * from. * @returns A new array with shallowly sanitized objects. */ export declare const removePrototypeMap: >(objects: readonly T[]) => Omit[];