/** * Maps over the values of an object (one level deep) * @param obj * @param fn * @private */ export declare function _mapValues(obj: Record, fn: (value: any, key: any, obj: any) => void): Record;