/** * @module indicative-rules */ /** * Test input against a custom regex. * * @example * ```js * const { is } = require('indicative') * * is.matches(/[a-z]/) // true * ``` */ export declare const matches: (input: string, regex: RegExp) => boolean;