import type { LanguageDefinition } from '../registry.js'; /** Patterns that flag a match. */ export declare const EN_PROFANITY: readonly string[]; /** * Words that must never be flagged, even when a pattern above matches inside * them. Each entry is a regex source anchored against the **whole surrounding * word**, so `class\p{L}*` clears `class`, `classic` and `classifier` but * leaves `asshole` alone. * * An allowed word always wins over a blocked pattern. */ export declare const EN_ALLOWLIST: readonly string[]; /** Ready to hand to `registerLanguage('en', en)`. Pre-registered already. */ export declare const en: LanguageDefinition; //# sourceMappingURL=en.d.ts.map