/**
 * A {@link Specification} that passes when the first item in an
 * array is greater than the second item in the array.
 *
 * @public
 * @extends {Specification}
 */
export default class GreaterThan extends Specification {
    /**
     * @protected
     * @override
     * @param {*} data
     * @returns {boolean}
     */
    protected override _evaluate(data: any): boolean;
}
import Specification from './../Specification.js';
