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