import Sequence from "./Sequence";
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}
     */
    minWith<T>(this: Sequence<T>, compare: (a: T, b: T) => number): T | null;
}
