import type { Fn } from "@thi.ng/api";
import type { Reducer } from "./api.js";
/**
* Reducer. Similar to {@link frequencies}, but instead of a Map produces an
* array of `[value, frequency]`-pairs, sorted by the descending number of
* occurrences of each distinct value.
*
* @example
* ```ts tangle:../export/sorted-frequencies.ts
* import { filter, sortedFrequencies, transduce } from "@thi.ng/transducers";
*
* const input = "hello, world! this transducers-stuff is pretty awesome! :)";
*
* const freqs = transduce(
* filter(x => /[a-z0-9]/.test(x)),
* sortedFrequencies(),
* input
* );
*
* console.log(freqs);
* // [
* // [ 's', 6 ], [ 'e', 5 ], [ 't', 5 ], [ 'r', 4 ],
* // [ 'l', 3 ], [ 'o', 3 ], [ 'h', 2 ], [ 'w', 2 ],
* // [ 'd', 2 ], [ 'i', 2 ], [ 'a', 2 ], [ 'u', 2 ],
* // [ 'f', 2 ], [ 'n', 1 ], [ 'c', 1 ], [ 'p', 1 ],
* // [ 'y', 1 ], [ 'm', 1 ]
* // ]
* ```
*/
export declare function sortedFrequencies(): Reducer;
export declare function sortedFrequencies(src: Iterable): [A, number][];
export declare function sortedFrequencies(key: Fn): Reducer;
export declare function sortedFrequencies(key: Fn, src: Iterable): Map;
//# sourceMappingURL=sorted-frequencies.d.ts.map