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