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