export declare function objectMap<Input extends {}, Output extends {}>(input: Input, mapper: (value: any, key: string) => any): Output;
