import type { SecurityRule } from "../../types"; /** * Detects workflows where webhook/trigger node output flows directly into * an LLM/AI node without passing through any validation, filtering, or * security checkpoint node. * * This creates a prompt injection risk: an attacker can send arbitrary * data via the webhook that reaches the model without being inspected. */ export declare const unvalidatedLlmInputRule: SecurityRule;