import type { LanguageDefinition } from '../registry.js'; /** Patterns that flag a match. */ export declare const DE_PROFANITY: readonly string[]; /** * Words that must never be flagged. Anchored against the whole surrounding * word, so `\p{L}*klass\p{L}*` clears `Klassik`, `klassisch` and `Weltklasse`. * * An allowed word always wins over a blocked pattern. */ export declare const DE_ALLOWLIST: readonly string[]; /** Ready to hand to `registerLanguage('de', de)`. Pre-registered already. */ export declare const de: LanguageDefinition; //# sourceMappingURL=de.d.ts.map