import type { CompareFn } from '../types/functions/mod'; export interface MinBy { (fn: CompareFn, iter: AsyncIterable): Promise; (fn: CompareFn): (iter: AsyncIterable) => Promise; } export declare const minBy: MinBy; //# sourceMappingURL=minBy.d.ts.map