import type { DetectionRule } from "./types.js"; /** * Advanced detection rules targeting state-of-the-art prompt injection techniques. * * These rules catch attacks that bypass basic pattern matching: * - Payload splitting * - Few-shot jailbreaking * - Virtualization/persona simulation * - Authority/hierarchy confusion * - Leetspeak/typo evasion * - Hypothetical framing * - JSON/code block escape * - Context window manipulation * - Conversation reset faking */ export declare const ADVANCED_RULES: DetectionRule[];