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