/** * @module indicative-rules */ /** * Returns a boolean telling if value is a valid boolean * or not. * * @example * ```js * const { is } = require('indicative') * * if (is.isBoolean(true)) { * } * ``` */ export declare const isBoolean: (input: any) => boolean;