export declare class MaxMinObject {
    #private;
    constructor(max: number, min: number);
    get max(): number;
    get min(): number;
}
