/** * Checks if `value` is greater than `other`. * * @since 1.0.0 * * @param {*} value - The value to compare. * @param {*} other - The other value to compare. * @returns {boolean} - Returns `true` if `value` is greater than `other`, else `false`. * * @example * * gt(3, 1); // => true * gt(1, 3); // => false */ declare const gt: (value: any, other: any) => boolean; export default gt;