import type { Ord } from "rambda";
import type { Awaitable } from "./Awaitable";
/** chunk items by compareFn, group items with same Ord */
export declare function chunkBys<T>(compareFn: (x: T) => Awaitable<Ord>): TransformStream<T, T[]>;
