import { Predicate } from './Predicate.js'; /** * @desc Ensures that the `value` is greater than the `lowerBound`. * * @example * import { ensure, isGreaterThan, TinyType } from 'tiny-types'; * * class AgeInYears extends TinyType { * constructor(public readonly value: number) { * ensure('Age in years', value, isGreaterThan(0)); * } * } * * @param {number} lowerBound * @returns {Predicate} */ export declare function isGreaterThan(lowerBound: number): Predicate; //# sourceMappingURL=isGreaterThan.d.ts.map