/** * @param {*} value - the value to check. * @param {number} config.value - the value must be greater than config.value. * @returns true if value is greater than config.value, false if not. */ declare const mustBeGreaterThan: (value: any, config: any) => boolean; export default mustBeGreaterThan;