import { Policy } from '../types.js'; /** * Reject events whose content matches the regex. * * @example * ```ts * // Ban events matching a regex. * regexPolicy(msg, /(🟠|🔥|😳)ChtaGPT/i); * ``` */ declare const regexPolicy: Policy; export default regexPolicy;