import { IterableX } from '../../iterable/iterablex.js'; import { ExtremaOptions } from '../../iterable/extremaoptions.js'; /** * @ignore */ export declare function maxByProto(this: IterableX, options?: ExtremaOptions): TSource[]; declare module '../../iterable/iterablex' { interface IterableX { maxBy: typeof maxByProto; } }