/** Same as Object.entries().forEach() but with type inference */ export declare function objectEntriesForEach(obj: Obj, iterator: (key: Key, val: Obj[Key]) => void): void;