export declare function mapValues, U>(input: T, mapper: (value: T[keyof T]) => U): { [K in keyof T]: U; }; export declare function mapEntries(input: Record, mapper: (key: string, val: T) => [key: string, val: U]): Record; export declare function mapAllEntries(input: Record, mapper: (entries: [key: string, val: T][]) => [key: string, val: U][]): Record; //# sourceMappingURL=objects.d.ts.map