import type { DetectionRule } from "./types.js"; /** * Multilingual prompt injection detection rules. * * Covers non-English injection patterns across: * Korean, Chinese, Japanese, Spanish, German, French, Russian, Arabic, * Turkish, and Hindi. * * Categories mirror the English built-in rules: * - Instruction override: ignore/disregard previous instructions * - Prompt exfiltration: reveal system prompt or hidden context * - Role override: redefine the LLM's identity * - Rule bypass: ignore all rules/restrictions * - Privilege escalation: admin/operator mode activation */ export declare const MULTILINGUAL_RULES: DetectionRule[];