export declare function mapValues<T, R>(object: Record<string, T>, callbackFn: (value: T) => R): {
    [k: string]: R;
};
