import { PropertyValidator } from "../PropertyValidator";
/**
 * Validates if given number is less than zero.
 *
 * @export
 * @class IsNegativeValidator
 * @implements {PropertyValidator<number>}
 */
export declare class IsNegativeValidator implements PropertyValidator<number> {
    isValid(input: number | undefined): boolean;
}
