import { PropertyValidator } from "../PropertyValidator";
/**
 * Validates if a value is not null (!== undefined, !== null).
 *
 * @export
 * @class IsNotNullValidator
 * @implements {PropertyValidator<any>}
 */
export declare class IsNotNullValidator implements PropertyValidator<any> {
    isValid(input: any): boolean;
}
