import { AsyncSequence } from "../../sequency"; export declare class Min { /** * Returns the minimum element of the sequence or `null` if sequence is empty. * * @returns {Promise} */ min(this: AsyncSequence): Promise; }