export declare type Iteratee = (val: any, key: any) => any;
export default function mapObject(obj: Record<string, any>, iteratee: Iteratee): {};
