import { PropertyValidator } from "../PropertyValidator";
/**
 * Validates if a value does not match ("!==") the comparison.
 *
 * @export
 * @class IsNotEqualValidator
 * @implements {PropertyValidator<T>}
 * @template T
 */
export declare class IsNotEqualValidator<T> implements PropertyValidator<T> {
    private comparison;
    constructor(comparison: T);
    isValid(input: T): boolean;
}
