/** * @module indicative-rules */ /** * Tells if `input` is greator than `comparsionInput`. * * @example * ```js * const { is } = require('indicative') * * if (is.above(20, 10)) { * } * ``` */ export declare const above: (input: number, comparsionInput: number) => boolean;