/** * English profanity dictionary. * Comprehensive coverage of slurs, profanity, hate speech, threats, and abuse. * Each entry includes normalized forms, aliases, severity, and category. */ import type { DictionaryEntry, PhraseEntry } from "../types.js"; export declare const EN_WORDS: DictionaryEntry[]; export declare const EN_PHRASES: PhraseEntry[];