export default function mapObjectValues(object: { [key: string]: T; }, fn: (input: T) => R): { [key: string]: R; };