export declare function mapValues<Input, Output>(object: Record<string, Input>, iteratee: (value: Input) => Output): Record<string, Output>;
