import type { SecurityRule } from "../../types"; /** * Detects dangerously configured tool nodes in workflows: * 1. HTTP Request nodes with destructive methods (DELETE, PUT, PATCH) * 2. Execute Command / SSH / Terminal nodes (arbitrary system execution) * 3. Database nodes with non-read operations detected via URL/query params * 4. Code execution nodes (Function, Script, Code nodes) */ export declare const dangerousToolConfigRule: SecurityRule;