import { ExtremaOptions } from './extremaoptions'; /** * * Returns the minimum element with the optional selector. * * @export * @template TSource The type of the elements in the source sequence. * @param {AsyncIterable} source An async-iterable sequence to determine the minimum element of. * @param {ExtremaOptions} [options] The options which include an optional comparer and abort signal. * @returns {Promise} A promise containing the minimum element. */ export declare function min(source: AsyncIterable, options?: ExtremaOptions): Promise;