/** * Spanish profanity dictionary. * Covers peninsular (Spain) and Latin American variants — Mexico (Mex), * Argentina/Uruguay (AR), Colombia (Col), Chile (Cl). * * Normalization notes: * - Every accented form is paired with its accent-stripped form in `normalized` * so inputs written without diacritics (the common case online) still match * after the normalizer strips accents. * - ñ → n collapse is handled by the normalizer; both forms are included * in `normalized` for belt-and-suspenders. * - Regional variants live as aliases so a single entry covers the slang. */ import type { DictionaryEntry, PhraseEntry } from '../types.js'; export declare const ES_WORDS: DictionaryEntry[]; export declare const ES_PHRASES: PhraseEntry[];