import { Sequence } from "../../sequency"; export declare class MinWith { /** * Returns the minimum element of the sequence by evaluating the given `compare` * function or `null` if sequence is empty. * * @returns {T | null} */ minWith(this: Sequence, compare: (a: T, b: T) => number): T | null; }