import { type Obj } from "./objectTypes"; export type MappedObj = { [k: string]: T; }; /** * Loop through object and call `$cb`, capture the result * in a new object under the same key. * * @param {object} $obj * @param {function} $cb * @return Object with `$cb` results mapped to the same key. */ export declare function MapObject($obj: Obj, $cb: ($name: string, $value: V) => T): MappedObj;