export declare function objectMap<T extends Record<string, any>>(obj: T, fn: (value: T[keyof T], key: keyof T) => any): {
    [k: string]: any;
};
