import type { IParallelEnumerable } from "../../types"; type MaxFunc = { (source: IParallelEnumerable): Promise; (source: IParallelEnumerable, selector: (x: TSource) => number): Promise; }; export declare const max: MaxFunc; export {};