/**
 * @module adaptive-expressions
 */
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License.
 */
import { ComparisonEvaluator } from './comparisonEvaluator';
/**
 * Check whether the first value is less than or equal to the second value.
 * Return true if the first value is less than or equal, or return false if the first value is more.
 */
export declare class LessThanOrEqual extends ComparisonEvaluator {
    /**
     * Initializes a new instance of the [LessThanOrEqual](xref:adaptive-expressions.LessThanOrEqual) class.
     */
    constructor();
    /**
     * @private
     */
    private static func;
}
//# sourceMappingURL=lessThanOrEqual.d.ts.map