declare module "@extra-array/partition-as" { import type { mapFn } from "./_types"; /** * Segregates values by similarity. * @param x an array * @param fm map function (v, i, x) * @returns Map {key => values} */ declare function partitionAs(x: Iterable, fm?: mapFn): Map; export = partitionAs; //# sourceMappingURL=partitionAs.d.ts.map}