import type { IObjectOf } from "@thi.ng/api"; /** * Higher order helper function for {@link rename} transducer. Takes an object * of key mappings and returns function applying these mapping/renames. * * @remarks * Keys in `kmap` are the new/renamed keys, their values the original names. For * keys which simply should be kept, but not renamed, set their value to `true`. * * @param kmap - */ export declare const renamer: (kmap: IObjectOf) => (x: any) => any; //# sourceMappingURL=renamer.d.ts.map