import { IterableX } from '../../iterable/iterablex'; /** * @ignore */ export declare function minByProto(this: IterableX, keyFn: (x: TSource) => TKey, cmp?: (x: TKey, y: TKey) => number): IterableX; declare module '../../iterable/iterablex' { interface IterableX { minBy: typeof minByProto; } }