import { PropertyValidator } from "../PropertyValidator";
/**
 * Validates if given number is greater than the threshold value.
 *
 * @export
 * @class IsGreaterThanValidator
 * @implements {PropertyValidator<number>}
 */
export declare class IsGreaterThanValidator implements PropertyValidator<number> {
    private threshold;
    constructor(threshold: number);
    isValid(input: number | undefined): boolean;
}
