import { ExtremaOptions } from '../../asynciterable/extremaoptions.js'; /** * @ignore */ export declare function maxByProto(this: AsyncIterable, options?: ExtremaOptions): Promise; declare module '../../asynciterable/asynciterablex' { interface AsyncIterableX { maxBy: typeof maxByProto; } }