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