/** * @module indicative-rules */ /** * Returns a boolean telling if value is truthy or not. * All values except following yields `true`. * * - false * - 0 * - null * - undefined * - empty string * * ```js * const { is } = require('indicative') * * is.truthy('') // false * is.truthy(null) // false * is.truthy(false) // false * is.truthy(true) // true * is.truthy(true) // true * is.truthy('hello world') // true * ``` */ export declare const truthy: (input: any) => boolean;