import { Obj } from "./objectTypes"; /** * For each object property, call callback with key/value. */ export type CB = ($index: string, $value: A) => any; export declare function ForEach($obj: Obj, $cb: CB): void;