/**
 * A {@link Specification} that passes when the value of the data item
 * exceeds the value passed to the constructor.
 *
 * @public
 * @extends {Specification}
 */
export default class GreaterThan extends Specification {
    /**
     * @param {number} value
     */
    constructor(value: number);
    /**
     * @protected
     * @override
     * @param {*} data
     * @returns {boolean}
     */
    protected override _evaluate(data: any): boolean;
    #private;
}
import Specification from './Specification.js';
