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