import { Dict } from "../types/util.type"; declare function objectMap(callback: ([key, val]: [string, VIn]) => [KOut, VOut], object: Dict): Dict; export default objectMap;