import { ValidationRule } from '../types/index.js'; /** * @file Check to ensure that a number is greater than a supplied amount. * @name greater-than.js * @author Nick Krause * @license MIT */ declare const greaterThan: (min: any) => ValidationRule; export { greaterThan };